summaryrefslogtreecommitdiffstats
path: root/kjsembed
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:16:01 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-07 21:16:01 -0600
commit3b7651a94758312b42fa63076c3299b6d2b9d0c9 (patch)
tree0b747d309e82f954ae7b7bd703ffc4f64fef3329 /kjsembed
parentbf94c81467706e92d33741649b8da9fe03c25077 (diff)
downloadtdebindings-3b7651a94758312b42fa63076c3299b6d2b9d0c9.tar.gz
tdebindings-3b7651a94758312b42fa63076c3299b6d2b9d0c9.zip
Rename additional members for tqt3
Diffstat (limited to 'kjsembed')
-rw-r--r--kjsembed/ksimpleprocess.cpp8
-rw-r--r--kjsembed/slotutils.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/kjsembed/ksimpleprocess.cpp b/kjsembed/ksimpleprocess.cpp
index a1adf3ac..0a7ee1cc 100644
--- a/kjsembed/ksimpleprocess.cpp
+++ b/kjsembed/ksimpleprocess.cpp
@@ -61,16 +61,16 @@ KSimpleProcess::~KSimpleProcess()
// If a troll sees this, he kills david not me
-void qt_enter_modal( TQWidget *widget );
-void qt_leave_modal( TQWidget *widget );
+void tqt_enter_modal( TQWidget *widget );
+void tqt_leave_modal( TQWidget *widget );
void KSimpleProcess::enter_loop()
{
TQWidget dummy(0,0,WType_Dialog | WShowModal);
dummy.setFocusPolicy( TQWidget::NoFocus );
- qt_enter_modal(&dummy);
+ tqt_enter_modal(&dummy);
tqApp->enter_loop();
- qt_leave_modal(&dummy);
+ tqt_leave_modal(&dummy);
}
void KSimpleProcess::slotProcessExited()
diff --git a/kjsembed/slotutils.cpp b/kjsembed/slotutils.cpp
index 1ba13188..83af6474 100644
--- a/kjsembed/slotutils.cpp
+++ b/kjsembed/slotutils.cpp
@@ -841,7 +841,7 @@ KJS::Value JSSlotUtils::invokeSlot( KJS::ExecState *exec, KJS::Object &, const K
} else {
kdDebug(80001) << "Call Signature: " << slotname << endl;
- obj->qt_invoke( slotid, uo );
+ obj->tqt_invoke( slotid, uo );
}
// Handle return types
TQCString ret( proxyimp->returnType() );