summaryrefslogtreecommitdiffstats
path: root/src/modules/options/mkcreateinstanceproc.sh
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2018-10-29 18:21:41 +0100
committerSlávek Banko <[email protected]>2022-01-17 13:30:05 +0100
commiteb6ac02bb511f14a2506fb2f3c94d84d469e42cd (patch)
tree138827ff0c8800f67b7725c352950f0df421916b /src/modules/options/mkcreateinstanceproc.sh
parent351c95fe16505298db187a17e4ceff8d2377190b (diff)
downloadkvirc-eb6ac02bb511f14a2506fb2f3c94d84d469e42cd.tar.gz
kvirc-eb6ac02bb511f14a2506fb2f3c94d84d469e42cd.zip
Fix build with a clean TQt namespace.
Signed-off-by: Slávek Banko <[email protected]> (cherry picked from commit 7cc4356bc2eceb5a66c2263bff44aa472d2ca290)
Diffstat (limited to 'src/modules/options/mkcreateinstanceproc.sh')
-rwxr-xr-xsrc/modules/options/mkcreateinstanceproc.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/options/mkcreateinstanceproc.sh b/src/modules/options/mkcreateinstanceproc.sh
index 0b567e5c..6f4cc042 100755
--- a/src/modules/options/mkcreateinstanceproc.sh
+++ b/src/modules/options/mkcreateinstanceproc.sh
@@ -186,7 +186,7 @@ KviOptionsInstanceManager::KviOptionsInstanceManager()
: QObject(0)
{
- //debug("Instantiating");
+ //tqDebug("Instantiating");
// Create the global widget dict : case sensitive , do not copy keys
m_pInstanceTree = new KviPointerList<KviOptionsWidgetInstanceEntry>;
m_pInstanceTree->setAutoDelete(true);
@@ -314,9 +314,9 @@ void KviOptionsInstanceManager::deleteInstanceTree(KviPointerList<KviOptionsWidg
delete e->pWidget->parent();
e->pWidget = 0;
} else {
- debug("Ops...i have deleted the options dialog ?");
+ tqDebug("Ops...i have deleted the options dialog ?");
}
- } //else debug("Clas %s has no widget",e->szName);
+ } //else tqDebug("Clas %s has no widget",e->szName);
if(e->pChildList)deleteInstanceTree(e->pChildList);
}
delete l;
@@ -326,7 +326,7 @@ void KviOptionsInstanceManager::deleteInstanceTree(KviPointerList<KviOptionsWidg
KviOptionsInstanceManager::~KviOptionsInstanceManager()
{
- if(m_pInstanceTree)debug("Ops...KviOptionsInstanceManager::cleanup() not called ?");
+ if(m_pInstanceTree)tqDebug("Ops...KviOptionsInstanceManager::cleanup() not called ?");
}
void KviOptionsInstanceManager::cleanup(KviModule * m)