diff options
author | Slávek Banko <[email protected]> | 2023-01-21 19:49:50 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-01-23 02:18:34 +0100 |
commit | 00acd92ff96bd6d3bb3136aa6d6b37314b3ad623 (patch) | |
tree | 60db84a70bf9cb13ffbf931151ae7b0f8ffc86e8 /mountconfig | |
parent | 94f5a3f12e1c61aa2f3cde2d7b260c08489336ac (diff) | |
download | tde-guidance-00acd92ff96bd6d3bb3136aa6d6b37314b3ad623.tar.gz tde-guidance-00acd92ff96bd6d3bb3136aa6d6b37314b3ad623.zip |
Update after renaming qt => tqt in PyTQt module.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'mountconfig')
-rw-r--r-- | mountconfig/SMBShareSelectDialog.py | 6 | ||||
-rw-r--r-- | mountconfig/SimpleCommandRunner.py | 2 | ||||
-rw-r--r-- | mountconfig/fuser.py | 2 | ||||
-rwxr-xr-x | mountconfig/mountconfig.py | 2 | ||||
-rw-r--r-- | mountconfig/sizeview.py | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/mountconfig/SMBShareSelectDialog.py b/mountconfig/SMBShareSelectDialog.py index 617ee04..3c2915b 100644 --- a/mountconfig/SMBShareSelectDialog.py +++ b/mountconfig/SMBShareSelectDialog.py @@ -14,7 +14,7 @@ # # ########################################################################### -from PyTQt.qt import * +from PyTQt.tqt import * from tdeui import * from tdecore import * from tdeio import * @@ -309,7 +309,7 @@ class SMBShareSelectDialog(KDialogBase): if self.selecteditem is None: return - if state==QButton.Off: + if state==TQButton.Off: self.guestradio.setChecked(True) self.userradio.setChecked(False) @@ -326,7 +326,7 @@ class SMBShareSelectDialog(KDialogBase): if self.updatinggui: return self.updatinggui = True - if state==QButton.Off: + if state==TQButton.Off: self.userradio.setChecked(True) self.guestradio.setChecked(False) diff --git a/mountconfig/SimpleCommandRunner.py b/mountconfig/SimpleCommandRunner.py index a6767b5..9936ba1 100644 --- a/mountconfig/SimpleCommandRunner.py +++ b/mountconfig/SimpleCommandRunner.py @@ -13,7 +13,7 @@ # (at your option) any later version. # # # ########################################################################### -from PyTQt.qt import * +from PyTQt.tqt import * from tdecore import * import locale diff --git a/mountconfig/fuser.py b/mountconfig/fuser.py index 06cf1a9..a84be6d 100644 --- a/mountconfig/fuser.py +++ b/mountconfig/fuser.py @@ -22,7 +22,7 @@ TODO: import sys import os -from PyTQt.qt import * +from PyTQt.tqt import * from tdeui import * #import kdedesigner from fuser_ui import * diff --git a/mountconfig/mountconfig.py b/mountconfig/mountconfig.py index f348aa6..3f6ced5 100755 --- a/mountconfig/mountconfig.py +++ b/mountconfig/mountconfig.py @@ -19,7 +19,7 @@ import sys import os import os.path -from PyTQt.qt import * +from PyTQt.tqt import * from tdeui import * from tdecore import * from tdefile import * diff --git a/mountconfig/sizeview.py b/mountconfig/sizeview.py index 49ce9f6..33b1560 100644 --- a/mountconfig/sizeview.py +++ b/mountconfig/sizeview.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from PyTQt.qt import * +from PyTQt.tqt import * from tdecore import * import sys, os |