summaryrefslogtreecommitdiffstats
path: root/lib/kross
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kross')
-rwxr-xr-xlib/kross/python/scripts/gui.py2
-rw-r--r--lib/kross/test/testgui.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/kross/python/scripts/gui.py b/lib/kross/python/scripts/gui.py
index 9dc8a7999..7461447a5 100755
--- a/lib/kross/python/scripts/gui.py
+++ b/lib/kross/python/scripts/gui.py
@@ -290,7 +290,7 @@ class QtDialog:
filename = None
try:
print "QtDialog.FileChooser.browseButtonClicked() kfile.KFileDialog"
- # try to use the kfile module included in pykde
+ # try to use the kfile module included in pytde
import kfile
filename = kfile.KFileDialog.getOpenFileName(self.initialfile, filtermask, self, "Save to file")
except:
diff --git a/lib/kross/test/testgui.py b/lib/kross/test/testgui.py
index 985520443..6a629c66e 100644
--- a/lib/kross/test/testgui.py
+++ b/lib/kross/test/testgui.py
@@ -75,7 +75,7 @@ class QtTest:
def browseButtonClicked(self):
filename = None
try:
- # try to use the kfile module included in pykde
+ # try to use the kfile module included in pytde
import kfile
filename = kfile.KFileDialog.getOpenFileName(self.defaultfilename, "*.html", self, "Save to file")
except: