diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:29:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-04 18:29:27 -0600 |
commit | 9950392af60b1672bd69498b5eaa5f86636acee7 (patch) | |
tree | 49b03197f5fef6d2be2f07aedd439d6beb13388c /lib/kross | |
parent | f88f3a5d3bea346d9e8a03a4fe2b5fe4d85b8e63 (diff) | |
download | koffice-9950392af60b1672bd69498b5eaa5f86636acee7.tar.gz koffice-9950392af60b1672bd69498b5eaa5f86636acee7.zip |
Part 1 of 2 rename pykde to pytde
Diffstat (limited to 'lib/kross')
-rwxr-xr-x | lib/kross/python/scripts/gui.py | 2 | ||||
-rw-r--r-- | lib/kross/test/testgui.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/kross/python/scripts/gui.py b/lib/kross/python/scripts/gui.py index 9dc8a799..7461447a 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 98552044..6a629c66 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: |