diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-03 22:23:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-03 22:23:44 -0600 |
commit | 203ba231d0276943aae36111f9ec1e949f3c6a4c (patch) | |
tree | f039f7a5b5fc2da88a96876971bac580d87f6788 /templates/annotated/basicapp.py | |
parent | fd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff) | |
download | pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip |
Initial TQt conversion
Diffstat (limited to 'templates/annotated/basicapp.py')
-rw-r--r-- | templates/annotated/basicapp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/annotated/basicapp.py b/templates/annotated/basicapp.py index d124b76..8af04b7 100644 --- a/templates/annotated/basicapp.py +++ b/templates/annotated/basicapp.py @@ -77,7 +77,7 @@ aboutData.addAuthor ("author2", "they did something else", "another@email.addres # Pass the command line arguments and aboutData to # KCmdLineArgs - this is where KDE will look for # this information. The KApplication constructor -# used below *requires* the args are processed +# used below *retquires* the args are processed # *before* KApplication is instantiated. There # is an alternate constructor that takes sys.argv # as an argument (see minimal.py) @@ -96,8 +96,8 @@ KCmdLineArgs.init (sys.argv, aboutData) # of tuples KCmdLineArgs.addCmdLineOptions ([("+files", "File to open")]) -# instantiate KApplication - no other QObject -# or QWidget based classes can be instantiated +# instantiate KApplication - no other TQObject +# or TQWidget based classes can be instantiated # until there is a KApplication instance app = KApplication () |