[PATCH] QT3 does not compile
Michael Schmitt <[email protected]>
| Newsgroups | gmane.comp.kde.devel.cygwin |
|---|---|
| Message-ID | <[email protected]> |
Hi Christian,
the recent patch is faulty - a semicolon is missing (see attachment).
Two additional remarks on the repository:
1. Whenever I do a "cvs update", I get a lot of messages like these:
? include/qtabdlg.h
? include/qtable.h
These messages can be suppressed by adding ".cvsignore" files to
the qt-3 directories.
2. Moreover, I get a lot of messages like these:
cvs update: move away doc/man/man3/qaccel.3qt; it is in the way
C doc/man/man3/qaccel.3qt
It seems that these files were committed twice - once with lower
case and once with upper case, right? Do you know how to fix the CVS
repository? The error messages are a bit annoying.
Kind regards,
Michael
_______________________________________________
kde-cygwin mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kde-cygwin
qt3-diff
(text/plain, 795 B)
Index: src/kernel/qfontengine_win.cpp
===================================================================
RCS file: /cvsroot/kde-cygwin/qt-3/src/kernel/Attic/qfontengine_win.cpp,v
retrieving revision 1.1.2.29
diff -u -p -r1.1.2.29 qfontengine_win.cpp
--- src/kernel/qfontengine_win.cpp 1 May 2005 06:50:19 -0000 1.1.2.29
+++ src/kernel/qfontengine_win.cpp 1 May 2005 09:36:11 -0000
@@ -508,7 +508,7 @@ void QFontEngineWin::draw( QPainter *p,
p->map ( xp, yp, &xp, &yp );
if ( p->txop >= QPainter::TxRotShear ) {
- int x_1, x_2, y_1, y_2, x_3, x_4, y_3, y_4
+ int x_1, x_2, y_1, y_2, x_3, x_4, y_3, y_4;
float dx, dy;
x_1 = 0; y_1 = 0; x_2 = 1000; y_2 = 0;
p->map( x_1, y_1, &x_3, &y_3 );