FYI.

Don't use the Qt Repo directly, you will get other compile errors then, like the one with
the Qt 4.7 enum which I reported about earlier. I think you should be fine if you use the
4.6 RC1 snapshot, and put the changes to the qstatemachine.h depicted in the patch file.

Also, you must of course git clone and build against the the community-port-to-4_6 repo at
http://qt.gitorious.org/qt-jambi

Helge

-------- Original Message --------
Subject: Re: [Qt-jambi-interest] Bump: Windows compile towards Qt 4.6 beta/RC1
Date: Wed, 18 Nov 2009 11:35:44 +0100
From: Eskil Abrahamsen Blomfeldt <[email protected]>
To: Helge Fredriksen <[email protected]>
CC: [email protected]
References: <[email protected]>


Helge Fredriksen skrev:
> Eskil, Gunnar, pleeeease give some directions at least where I could 
> try to dig in!

Hi, Helge.

This was a bug in Qt. I'm attaching a patch to this mail which you can 
apply to your Qt sources to fix the problem.

-- Eskil

--- a/src/corelib/statemachine/qstatemachine.h
+++ b/src/corelib/statemachine/qstatemachine.h
@@ -70,7 +70,7 @@
     Q_PROPERTY(bool animated READ isAnimated WRITE setAnimated)
 #endif
 public:
-    class SignalEvent : public QEvent
+    class Q_CORE_EXPORT SignalEvent : public QEvent
     {
     public:
         SignalEvent(QObject *sender, int signalIndex,
@@ -89,7 +89,7 @@
         friend class QSignalTransitionPrivate;
     };
 
-    class WrappedEvent : public QEvent
+    class Q_CORE_EXPORT WrappedEvent : public QEvent
     {
     public:
         WrappedEvent(QObject *object, QEvent *event);
_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to