On Sun, Jun 17, 2007 at 09:55:59PM +0200, Edwin Leuven wrote: > Andre Poenitz wrote: > >On Sun, Jun 17, 2007 at 05:55:37PM -0000, [EMAIL PROTECTED] wrote: > >> > >>+#if QT_VERSION >= 0x040200 > >> > >>+// FIXME: this can go when we move to Qt 4.3 > >>+#define QT_VERSION_CHECK(major, minor, patch) > >>((major<<16)|(minor<<8)|(patch)) > >>+ > >>+#if QT_VERSION >= QT_VERSION_CHECK(4, 2, 0) > > > > > >Are you listening? > > always dearest > > >I think I complained at least twice about the unsymmetry and still got > >no explanation how this would work without warnign with an already > >defined macro. > > i think i also told you twice that > > #if QT_VERSION >= 0x040200 > > in the header doesn't compile for me.
So you are saying #if QT_VERSION >= 0x040200 does not compile in a .h but it does in a .cpp? Andre'