summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:02:42 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-05 22:02:42 -0600
commit8c9e5c21b7246ebab379d6d36120992c5e82501e (patch)
treebd3e2823a96f8cfb35b30b9514a3bc3d6e8857e7 /templates
parent74420664aeaa6bb4d9bbde7f70a3b4468d24be60 (diff)
downloadpytde-8c9e5c21b7246ebab379d6d36120992c5e82501e.tar.gz
pytde-8c9e5c21b7246ebab379d6d36120992c5e82501e.zip
Fix retquire
Diffstat (limited to 'templates')
-rw-r--r--templates/annotated/basicapp.py2
-rw-r--r--templates/annotated/menuapp2.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/annotated/basicapp.py b/templates/annotated/basicapp.py
index 8af04b7..0a44593 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 *retquires* the args are processed
+# used below *requires* the args are processed
# *before* KApplication is instantiated. There
# is an alternate constructor that takes sys.argv
# as an argument (see minimal.py)
diff --git a/templates/annotated/menuapp2.py b/templates/annotated/menuapp2.py
index b3b3501..be0d100 100644
--- a/templates/annotated/menuapp2.py
+++ b/templates/annotated/menuapp2.py
@@ -67,7 +67,7 @@ class MainWin (KMainWindow):
# Create the status bar
self.initStatusBar ()
- # Usings actions, only a single line is retquired
+ # Usings actions, only a single line is required
# to enable/disable both the menu item and corresponding
# toolbar button from anywhere in the program
self.saveAction.setEnabled (False)
@@ -112,7 +112,7 @@ class MainWin (KMainWindow):
# or you can use KAction.setIcon to set/change the icon. You
# can also add a tooltip with KAction.setToolTip
- # This KAction constructor retquires a TQString, an accelerator (0
+ # This KAction constructor requires a TQString, an accelerator (0
# in this case), a slot, and a TQObject (None in this case)
self.specialAction = KAction (i18n ("Special"), 0, self.slotSpecial, None)