summaryrefslogtreecommitdiffstats
path: root/src/dialogs
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:07:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:07:55 -0600
commit3ad1b623ac4af0f19db3580e4ef6b0d923260ba0 (patch)
tree3b77748c913634d88310c7933877b201532d4ae1 /src/dialogs
parente02e31c8b9d854cd62cbe9799228f6e08e882773 (diff)
downloadtqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.tar.gz
tqt3-3ad1b623ac4af0f19db3580e4ef6b0d923260ba0.zip
Sync again
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/qmessagebox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/qmessagebox.h b/src/dialogs/qmessagebox.h
index 2c171323..65a7b624 100644
--- a/src/dialogs/qmessagebox.h
+++ b/src/dialogs/qmessagebox.h
@@ -204,11 +204,11 @@ private: // Disabled copy constructor and operator=
* #include <qmessagebox.h>
* int main( int argc, char**argv )
* {
-* QT_RETQUIRE_VERSION( argc, argv, "3.0.5" )
+* QT_REQUIRE_VERSION( argc, argv, "3.0.5" )
* ...
* }
*/
-#define QT_RETQUIRE_VERSION( argc, argv, str ) { TQString s=TQString::fromLatin1(str);\
+#define QT_REQUIRE_VERSION( argc, argv, str ) { TQString s=TQString::fromLatin1(str);\
TQString sq=TQString::fromLatin1(qVersion()); if ( (sq.section('.',0,0).toInt()<<16)+\
(sq.section('.',1,1).toInt()<<8)+sq.section('.',2,2).toInt()<(s.section('.',0,0).toInt()<<16)+\
(s.section('.',1,1).toInt()<<8)+s.section('.',2,2).toInt() ){if ( !qApp){ int c=0; new \