Hi !

I'm using mingw-4.3.2 experimental from
http://www.tdragon.net/recentgcc/
for the current snapshots.

Two files from QtGui,
 gui/kernel/qapplication_win.cpp
 gui/painting/qbackingstore.cpp

are missing function declarations for qt_sendSpontanousEvent and 
qt_dirtyRegion (see attached patch).

Everything else compiles nicely. Good job.

Yours,

Jürgen
-- 
* Dipl.-Math. Jürgen Hunold       ! Ingenieurgesellschaft für 
* voice: ++49 511 262926 57       ! Verkehrs- und Eisenbahnwesen mbH  
* fax  : ++49 511 262926 99       ! Lister Straße 15
* [email protected]        ! www.ivembh.de
* 
* Geschäftsführer:                ! Sitz des Unternehmens: Hannover
* Prof. Dr.-Ing. Thomas Siefer    ! Amtsgericht Hannover, HRB 56965
* PD Dr.-Ing. Alfons Radtke       !


Index: gui/kernel/qapplication_win.cpp
===================================================================
--- gui/kernel/qapplication_win.cpp	(revision 95)
+++ gui/kernel/qapplication_win.cpp	(working copy)
@@ -225,6 +225,8 @@
 
 extern bool qt_tabletChokeMouse;
 extern QWidget* qt_get_tablet_widget();
+extern bool qt_sendSpontaneousEvent(QObject*, QEvent*);
+extern QRegion qt_dirtyRegion(QWidget *);
 
 typedef QHash<UINT, QTabletDeviceData> QTabletCursorInfo;
 Q_GLOBAL_STATIC(QTabletCursorInfo, tCursorInfo)
Index: gui/painting/qbackingstore.cpp
===================================================================
--- gui/painting/qbackingstore.cpp	(revision 95)
+++ gui/painting/qbackingstore.cpp	(working copy)
@@ -58,6 +58,8 @@
 
 QT_BEGIN_NAMESPACE
 
+extern QRegion qt_dirtyRegion(QWidget *);
+
 /*
    A version of QRect::intersects() that does not normalize the rects.
 */
_______________________________________________
Qt4-preview-feedback mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback

Reply via email to