Hi,

I'm having this compilation error:

C2365: 'DECIMAL' : nueva definición; la definición anterior era 'typedef'
C:\Archivos de programa\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include\WTypes.h(1042) : vea la declaración de 'DECIMAL'

In english would be:

C2365: 'DECIMAL' : new definition; last definition was 'typedef'
C:\Archivos de programa\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include\WTypes.h(1042) : see 'DECIMAL' declaration

Qt Code:
  1. class CParameter : public QObject
  2. {
  3. Q_OBJECT
  4.  
  5. public:
  6. enum TYPE { NUMERIC = 0, DECIMAL};
  7. ...
To copy to clipboard, switch view to plain text mode 

The class compiles well alone but none when compiling all the application.

Thanks,