diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /examples/qwerty/qwerty.cpp | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
Diffstat (limited to 'examples/qwerty/qwerty.cpp')
-rw-r--r-- | examples/qwerty/qwerty.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qwerty/qwerty.cpp b/examples/qwerty/qwerty.cpp index 93dcc2eb8..4d7911271 100644 --- a/examples/qwerty/qwerty.cpp +++ b/examples/qwerty/qwerty.cpp @@ -34,7 +34,7 @@ Editor::Editor( TQWidget * parent , const char * name ) m = new TQMenuBar( this, "menu" ); TQPopupMenu * file = new TQPopupMenu(); - Q_CHECK_PTR( file ); + TQ_CHECK_PTR( file ); m->insertItem( "&File", file ); file->insertItem( "&New", this, SLOT(newDoc()), ALT+Key_N ); @@ -59,7 +59,7 @@ Editor::Editor( TQWidget * parent , const char * name ) rebuildCodecList(); TQPopupMenu * edit = new TQPopupMenu(); - Q_CHECK_PTR( edit ); + TQ_CHECK_PTR( edit ); m->insertItem( "&Edit", edit ); edit->insertItem( "To &Uppercase", this, SLOT(toUpper()), ALT+Key_U ); |