diff options
author | Slávek Banko <[email protected]> | 2022-12-21 14:38:03 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-12-21 14:38:03 +0100 |
commit | cebecd44a07f0977b49e605e505b8f6350a77818 (patch) | |
tree | 47bb83a54d31a1942adbf1878600f8886a3b39fd /wineconfig | |
parent | ffaf4cae99bdcf3c99fe371c55ef51c94d2e78f0 (diff) | |
download | tde-guidance-cebecd44a07f0977b49e605e505b8f6350a77818.tar.gz tde-guidance-cebecd44a07f0977b49e605e505b8f6350a77818.zip |
Update after rename python extension module from python_tqt to PyTQt.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'wineconfig')
-rwxr-xr-x | wineconfig/firstrunwizard.py | 2 | ||||
-rw-r--r-- | wineconfig/kcm_wineconfig.cpp | 2 | ||||
-rwxr-xr-x | wineconfig/wineconfig.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/wineconfig/firstrunwizard.py b/wineconfig/firstrunwizard.py index da5977c..3b3af81 100755 --- a/wineconfig/firstrunwizard.py +++ b/wineconfig/firstrunwizard.py @@ -16,7 +16,7 @@ # # ########################################################################### -from python_tqt.qt import * +from PyTQt.qt import * from tdecore import * from tdeui import * from tdefile import * diff --git a/wineconfig/kcm_wineconfig.cpp b/wineconfig/kcm_wineconfig.cpp index 041e8e4..34e1230 100644 --- a/wineconfig/kcm_wineconfig.cpp +++ b/wineconfig/kcm_wineconfig.cpp @@ -76,7 +76,7 @@ static TDECModule* return_instance( TQWidget *parent, const char *name ) { // Inject a helper function TQString bridge = TQString("import sip_tqt\n" - "from python_tqt import qt\n" + "from PyTQt import qt\n" "def kcontrol_bridge_" FACTORY "(parent,name):\n" " if parent!=0:\n" " wparent = sip_tqt.wrapinstance(parent,qt.TQWidget)\n" diff --git a/wineconfig/wineconfig.py b/wineconfig/wineconfig.py index ea2ba42..f2a61ee 100755 --- a/wineconfig/wineconfig.py +++ b/wineconfig/wineconfig.py @@ -19,7 +19,7 @@ import sys import os import os.path -from python_tqt.qt import * +from PyTQt.qt import * from tdecore import * from tdeui import * from tdefile import * |