diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-01-12 01:00:16 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-01-12 01:00:16 +0100 |
commit | f1df318a34f0c5a4eeb370565e12173459a84748 (patch) | |
tree | b1c86d48398b2f27e009d663d09969b392e80052 /pyqtconfig.py.in | |
parent | 76700491296d687e461a3ef764bf01ad74f1c3d6 (diff) | |
download | pytqt-f1df318a34f0c5a4eeb370565e12173459a84748.tar.gz pytqt-f1df318a34f0c5a4eeb370565e12173459a84748.zip |
Update for renamed sip_tqt_config.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'pyqtconfig.py.in')
-rw-r--r-- | pyqtconfig.py.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pyqtconfig.py.in b/pyqtconfig.py.in index a838543..b927751 100644 --- a/pyqtconfig.py.in +++ b/pyqtconfig.py.in @@ -21,14 +21,14 @@ # modules that %Import PyTQt modules. -from sip4_tqt import sipconfig +import sip_tqt_config # These are installation specific values created when PyTQt was configured. # @SIP_CONFIGURATION@ -class Configuration(sipconfig.Configuration): +class Configuration(sip_tqt_config.Configuration): """The class that represents PyTQt configuration values. """ def __init__(self, sub_cfg=None): @@ -44,17 +44,17 @@ class Configuration(sipconfig.Configuration): cfg.append(_pkg_config) - sipconfig.Configuration.__init__(self, cfg) + sip_tqt_config.Configuration.__init__(self, cfg) -class TQtModuleMakefile(sipconfig.SIPModuleMakefile): +class TQtModuleMakefile(sip_tqt_config.SIPModuleMakefile): """The Makefile class for modules that %Import qt. """ def __init__(self, *args, **kw): """Initialise an instance of a module Makefile. """ kw["qt"] = 1 - apply(sipconfig.SIPModuleMakefile.__init__, (self, ) + args, kw) + apply(sip_tqt_config.SIPModuleMakefile.__init__, (self, ) + args, kw) def finalise(self): """Finalise the macros. @@ -65,7 +65,7 @@ class TQtModuleMakefile(sipconfig.SIPModuleMakefile): self.LIBDIR.append(self.config.pyqt_mod_dir) self.extra_libs.append(self.module_as_lib("qt")) - sipconfig.SIPModuleMakefile.finalise(self) + sip_tqt_config.SIPModuleMakefile.finalise(self) class TQtAxContainerModuleMakefile(TQtModuleMakefile): |