diff options
Diffstat (limited to 'kxsldbg/kxsldbgpart')
-rw-r--r-- | kxsldbg/kxsldbgpart/kxsldbg_part.cpp | 88 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/qxsldbgdoc.cpp | 4 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgbreakpointsimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgconfigimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgdebugger.cpp | 2 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgentitiesimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgglobalvariablesimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbginspector.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbglocalvariablesimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp | 8 | ||||
-rw-r--r-- | kxsldbg/kxsldbgpart/xsldbgtemplatesimpl.cpp | 8 |
12 files changed, 83 insertions, 83 deletions
diff --git a/kxsldbg/kxsldbgpart/kxsldbg_part.cpp b/kxsldbg/kxsldbgpart/kxsldbg_part.cpp index 31f50267..d83b6be4 100644 --- a/kxsldbg/kxsldbgpart/kxsldbg_part.cpp +++ b/kxsldbg/kxsldbgpart/kxsldbg_part.cpp @@ -102,149 +102,149 @@ KXsldbgPart::KXsldbgPart( TQWidget *parentWidget, const char * /*widgetName*/, docDictionary.setAutoDelete(true); // create our actions - KStdAction::open(this, TQT_SLOT(fileOpen()), actionCollection()); + KStdAction::open(this, TQ_SLOT(fileOpen()), actionCollection()); // set our XML-UI resource file setXMLFile("kxsldbg_part.rc"); (void) new TDEAction( i18n("Configure Editor..."), "configure", 0, - this, TQT_SLOT(configureEditorCmd_activated()), + this, TQ_SLOT(configureEditorCmd_activated()), actionCollection(), "configureEditorCmd" ); (void) new TDEAction( i18n("Configure..."), "configure", Key_C, - this, TQT_SLOT(configureCmd_activated()), + this, TQ_SLOT(configureCmd_activated()), actionCollection(), "configureCmd" ); (void) new TDEAction( i18n("Inspect..."), "edit-find", Key_I, - this, TQT_SLOT(inspectorCmd_activated()), + this, TQ_SLOT(inspectorCmd_activated()), actionCollection(), "inspectCmd" ); // Motions commands (void) new TDEAction( i18n("Run"), "system-run", Key_F5, - this, TQT_SLOT(runCmd_activated()), + this, TQ_SLOT(runCmd_activated()), actionCollection(), "runCmd" ); (void) new TDEAction( i18n("Continue"), "1downarrow", Key_F4, - this, TQT_SLOT(continueCmd_activated()), + this, TQ_SLOT(continueCmd_activated()), actionCollection(), "continueCmd" ); (void) new TDEAction( i18n("Step"), "step", Key_F8, - this, TQT_SLOT(stepCmd_activated()), + this, TQ_SLOT(stepCmd_activated()), actionCollection(), "stepCmd" ); (void) new TDEAction( i18n("Next"), "next", Key_F10, - this, TQT_SLOT(nextCmd_activated()), + this, TQ_SLOT(nextCmd_activated()), actionCollection(), "nextCmd" ); (void) new TDEAction( i18n("Step Up"), "xsldbg_stepup", Key_F6, - this, TQT_SLOT(stepupCmd_activated()), + this, TQ_SLOT(stepupCmd_activated()), actionCollection(), "stepupCmd" ); (void) new TDEAction( i18n("Step Down"), "xsldbg_stepdown", Key_F7, - this, TQT_SLOT(stepCmd_activated()), + this, TQ_SLOT(stepCmd_activated()), actionCollection(), "stepdownCmd" ); // Breakpoint commands (void) new TDEAction( i18n("Break"), "xsldbg_break", Key_F2, - this, TQT_SLOT(breakCmd_activated()), + this, TQ_SLOT(breakCmd_activated()), actionCollection(), "breakCmd" ); (void) new TDEAction( i18n("Enable/Disable"), "xsldbg_enable", Key_F3, - this, TQT_SLOT(enableCmd_activated()), + this, TQ_SLOT(enableCmd_activated()), actionCollection(), "enableCmd" ); (void) new TDEAction( i18n("Delete"), "xsldbg_delete", Key_Delete, - this, TQT_SLOT(deleteCmd_activated()), + this, TQ_SLOT(deleteCmd_activated()), actionCollection(), "deleteCmd" ); (void) new TDEAction( i18n("&Source"), "xsldbg_source", Key_S, - this, TQT_SLOT(sourceCmd_activated()), + this, TQ_SLOT(sourceCmd_activated()), actionCollection(), "sourceCmd" ); (void) new TDEAction( i18n("&Data"), "xsldbg_data", Key_D, - this, TQT_SLOT(dataCmd_activated()), + this, TQ_SLOT(dataCmd_activated()), actionCollection(), "dataCmd" ); (void) new TDEAction( i18n("&Output"), "xsldbg_output", Key_O, - this, TQT_SLOT(outputCmd_activated()), + this, TQ_SLOT(outputCmd_activated()), actionCollection(), "outputCmd" ); (void) new TDEAction( i18n("Reload Current File From Disk"), "xsldbg_refresh", CTRL + Key_F5, - this, TQT_SLOT(refreshCmd_activated()), + this, TQ_SLOT(refreshCmd_activated()), actionCollection(), "refreshCmd" ); /* tracing and walking */ (void) new TDEAction( i18n("Walk Through Stylesheet..."), Key_W, - this, TQT_SLOT(walkCmd_activated()), + this, TQ_SLOT(walkCmd_activated()), actionCollection(), "walkCmd" ); (void) new TDEAction( i18n("Stop Wal&king Through Stylesheet"), Key_K, - this, TQT_SLOT(walkStopCmd_activated()), + this, TQ_SLOT(walkStopCmd_activated()), actionCollection(), "walkStopCmd" ); (void) new TDEAction( i18n("Tr&ace Execution of Stylesheet"), Key_A, - this, TQT_SLOT(traceCmd_activated()), + this, TQ_SLOT(traceCmd_activated()), actionCollection(), "traceCmd" ); (void) new TDEAction( i18n("Stop Tracing of Stylesheet"), Key_K, - this, TQT_SLOT(traceStopCmd_activated()), + this, TQ_SLOT(traceStopCmd_activated()), actionCollection(), "traceStopCmd" ); (void) new TDEAction( i18n("&Evaluate Expression..."), Key_E, - this, TQT_SLOT(evaluateCmd_activated()), + this, TQ_SLOT(evaluateCmd_activated()), actionCollection(), "evaluateCmd" ); (void) new TDEAction( i18n("Goto &XPath..."), Key_X, - this, TQT_SLOT(gotoXPathCmd_activated()), + this, TQ_SLOT(gotoXPathCmd_activated()), actionCollection(), "gotoXPathCmd" ); (void) new TDEAction( i18n("Lookup SystemID..."), 0, - this, TQT_SLOT(slotLookupSystemID()), + this, TQ_SLOT(slotLookupSystemID()), actionCollection(), "lookupSystemID" ); (void) new TDEAction( i18n("Lookup PublicID..."), 0, - this, TQT_SLOT(slotLookupPublicID()), + this, TQ_SLOT(slotLookupPublicID()), actionCollection(), "lookupPublicID" ); (void) new TDEAction( i18n("Quit"), 0, CTRL + Key_Q, - this, TQT_SLOT(quit()), + this, TQ_SLOT(quit()), actionCollection(), "file_quit" ); /* (void) new TDEAction( i18n("Exit KXsldbg"), "xsldbg_output", CTRL + Key_Q, - this, TQT_SLOT(exitCmd_activated()), + this, TQ_SLOT(exitCmd_activated()), actionCollection(), "exitCmd" ); */ - connect( xPathBtn, TQT_SIGNAL( clicked() ), - this, TQT_SLOT( slotGotoXPath() ) ); - connect( evaluateBtn, TQT_SIGNAL( clicked() ), - this, TQT_SLOT( slotEvaluate() ) ); + connect( xPathBtn, TQ_SIGNAL( clicked() ), + this, TQ_SLOT( slotGotoXPath() ) ); + connect( evaluateBtn, TQ_SIGNAL( clicked() ), + this, TQ_SLOT( slotEvaluate() ) ); /* - connect( searchBtn, TQT_SIGNAL( clicked() ), - this, TQT_SLOT( slotSearch() ) ); + connect( searchBtn, TQ_SIGNAL( clicked() ), + this, TQ_SLOT( slotSearch() ) ); */ /* We must have a valid debugger and inspector */ createInspector(); @@ -312,7 +312,7 @@ bool KXsldbgPart::fetchURL(const KURL &url) if (docPtr->kateView()){ mainView->addWidget(docPtr->kateView()); Kate::View *v = Kate::view((docPtr->kateView())); - connect(v, TQT_SIGNAL(cursorPositionChanged()), this, TQT_SLOT(cursorPositionChanged())); + connect(v, TQ_SIGNAL(cursorPositionChanged()), this, TQ_SLOT(cursorPositionChanged())); } } @@ -470,13 +470,13 @@ void KXsldbgPart::createInspector() debugger = new XsldbgDebugger(); TQ_CHECK_PTR( debugger ); if ( debugger != 0L ) { - connect(debugger, TQT_SIGNAL( debuggerReady()), - this, TQT_SLOT(debuggerStarted())); + connect(debugger, TQ_SIGNAL( debuggerReady()), + this, TQ_SLOT(debuggerStarted())); if (outputview){ connect(debugger, - TQT_SIGNAL( showMessage(TQString /* msg*/)), + TQ_SIGNAL( showMessage(TQString /* msg*/)), outputview, - TQT_SLOT(slotProcShowMessage(TQString /* msg*/))); + TQ_SLOT(slotProcShowMessage(TQString /* msg*/))); } inspector = new XsldbgInspector( debugger ); TQ_CHECK_PTR( inspector ); @@ -484,31 +484,31 @@ void KXsldbgPart::createInspector() if (inspector != 0L){ /*process line number and/or file name changed */ connect(debugger, - TQT_SIGNAL(lineNoChanged + TQ_SIGNAL(lineNoChanged (TQString /* fileName */ , int /* lineNumber */ , bool /* breakpoint */ ) ), this, - TQT_SLOT(lineNoChanged + TQ_SLOT(lineNoChanged ( TQString /* fileName */ , int /* lineNumber */ , bool /* breakpoint */ ) ) ); connect(debugger, - TQT_SIGNAL(breakpointItem(TQString /* fileName*/, + TQ_SIGNAL(breakpointItem(TQString /* fileName*/, int /* lineNumber */, TQString /*templateName*/, TQString /* modeName */, bool /* enabled */, int /* id */)), this, - TQT_SLOT( breakpointItem(TQString /* fileName*/, + TQ_SLOT( breakpointItem(TQString /* fileName*/, int /* lineNumber */, TQString /*templateName*/, TQString /* modeName */, bool /* enabled */, int /* id */))); - connect(debugger, TQT_SIGNAL(resolveItem(TQString /*URI*/)), - this, TQT_SLOT(slotProcResolveItem(TQString /*URI*/))); + connect(debugger, TQ_SIGNAL(resolveItem(TQString /*URI*/)), + this, TQ_SLOT(slotProcResolveItem(TQString /*URI*/))); } } } diff --git a/kxsldbg/kxsldbgpart/qxsldbgdoc.cpp b/kxsldbg/kxsldbgpart/qxsldbgdoc.cpp index e4fafe5d..1b7580ca 100644 --- a/kxsldbg/kxsldbgpart/qxsldbgdoc.cpp +++ b/kxsldbg/kxsldbgpart/qxsldbgdoc.cpp @@ -18,8 +18,8 @@ QXsldbgDoc::QXsldbgDoc(TQWidget *parent, KURL url) : TQObject(0L, "QXsldbgDoc"), kDoc(0L),kView(0L), locked(false) { kDoc = KTextEditor::createDocument("libkatepart", 0L,"KTextEditor::Document"); - connect(kDoc, TQT_SIGNAL(started(TDEIO::Job *)), this, TQT_SLOT(lockDoc())); - connect(kDoc, TQT_SIGNAL(completed()), this, TQT_SLOT(unlockDoc())); + connect(kDoc, TQ_SIGNAL(started(TDEIO::Job *)), this, TQ_SLOT(lockDoc())); + connect(kDoc, TQ_SIGNAL(completed()), this, TQ_SLOT(unlockDoc())); if (kDoc){ kView = kDoc->createView(parent, "QXsldbgDocView"); KURL cleanUrl; diff --git a/kxsldbg/kxsldbgpart/xsldbgbreakpointsimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgbreakpointsimpl.cpp index 453b4f60..e7716a0b 100644 --- a/kxsldbg/kxsldbgpart/xsldbgbreakpointsimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgbreakpointsimpl.cpp @@ -30,16 +30,16 @@ XsldbgBreakpointsImpl::XsldbgBreakpointsImpl(XsldbgDebugger *debugger, : XsldbgBreakpoints(parent, name), XsldbgDialogBase() { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(breakpointItem(TQString /* file*/, + connect(debugger, TQ_SIGNAL(breakpointItem(TQString /* file*/, int /*line number */, TQString /*templateName*/, TQString /* modeName*/, bool /* enabled */, int /* id */)), - this, TQT_SLOT(slotProcBreakpointItem(TQString /* file*/, + this, TQ_SLOT(slotProcBreakpointItem(TQString /* file*/, int /*line number */, TQString /*templateName*/, TQString /* modeName */, bool /* enabled */, int /* id */))); - connect( breakpointListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect( breakpointListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); refresh(); } diff --git a/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp index 9a500b6c..85a2b012 100644 --- a/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgcallstackimpl.cpp @@ -27,10 +27,10 @@ XsldbgCallStackImpl::XsldbgCallStackImpl(XsldbgDebugger *debugger, { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(callStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */)), - this, TQT_SLOT(slotProcCallStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */))); - connect( callStackListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect(debugger, TQ_SIGNAL(callStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */)), + this, TQ_SLOT(slotProcCallStackItem(TQString /* templateName*/, TQString /* fileName */, int /* lineNumber */))); + connect( callStackListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); refresh(); diff --git a/kxsldbg/kxsldbgpart/xsldbgconfigimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgconfigimpl.cpp index ade07c6e..18fa6f29 100644 --- a/kxsldbg/kxsldbgpart/xsldbgconfigimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgconfigimpl.cpp @@ -78,10 +78,10 @@ XsldbgConfigImpl::XsldbgConfigImpl(XsldbgDebugger *debugger, : XsldbgConfig(parent, name) { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(parameterItem(TQString /* name*/, TQString /* value */)), - this, TQT_SLOT(slotProcParameterItem(TQString /* name*/, TQString /* value */))); - connect(debugger, TQT_SIGNAL(fileDetailsChanged()), - this, TQT_SLOT(slotReloadFileNames())); + connect(debugger, TQ_SIGNAL(parameterItem(TQString /* name*/, TQString /* value */)), + this, TQ_SLOT(slotProcParameterItem(TQString /* name*/, TQString /* value */))); + connect(debugger, TQ_SIGNAL(fileDetailsChanged()), + this, TQ_SLOT(slotReloadFileNames())); paramIndex= 0; catalogs = false; debug = false; diff --git a/kxsldbg/kxsldbgpart/xsldbgdebugger.cpp b/kxsldbg/kxsldbgpart/xsldbgdebugger.cpp index a9521964..c926eca1 100644 --- a/kxsldbg/kxsldbgpart/xsldbgdebugger.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgdebugger.cpp @@ -213,7 +213,7 @@ void XsldbgDebugger::slotConfigure() if(inspector == 0L ){ inspector = new XsldbgInspector(this); - connect(inspector, TQT_SIGNAL(closedWindow()), this, TQT_SLOT(slotConfigClosed())); + connect(inspector, TQ_SIGNAL(closedWindow()), this, TQ_SLOT(slotConfigClosed())); } } diff --git a/kxsldbg/kxsldbgpart/xsldbgentitiesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgentitiesimpl.cpp index 03f21618..576696db 100644 --- a/kxsldbg/kxsldbgpart/xsldbgentitiesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgentitiesimpl.cpp @@ -29,15 +29,15 @@ XsldbgEntitiesImpl::XsldbgEntitiesImpl(XsldbgDebugger *debugger, { this->debugger = debugger; connect(debugger, - TQT_SIGNAL(entityItem(TQString /*SystemID*/, + TQ_SIGNAL(entityItem(TQString /*SystemID*/, TQString /*PublicID*/)), this, - TQT_SLOT(slotProcEntityItem(TQString /*SystemID*/, + TQ_SLOT(slotProcEntityItem(TQString /*SystemID*/, TQString /*PublicID*/))); connect( entitiesListView, - TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); } diff --git a/kxsldbg/kxsldbgpart/xsldbgglobalvariablesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgglobalvariablesimpl.cpp index 235c564a..69affd1e 100644 --- a/kxsldbg/kxsldbgpart/xsldbgglobalvariablesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgglobalvariablesimpl.cpp @@ -28,10 +28,10 @@ XsldbgGlobalVariablesImpl::XsldbgGlobalVariablesImpl(XsldbgDebugger *debugger, : XsldbgGlobalVariables(parent, name), XsldbgDialogBase() { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(globalVariableItem(TQString /*name */, TQString /* fileName */, int /*lineNumber */)), - this, TQT_SLOT(slotProcGlobalVariableItem(TQString /*name */, TQString /* fileName */, int /*lineNumber */))); - connect( varsListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect(debugger, TQ_SIGNAL(globalVariableItem(TQString /*name */, TQString /* fileName */, int /*lineNumber */)), + this, TQ_SLOT(slotProcGlobalVariableItem(TQString /*name */, TQString /* fileName */, int /*lineNumber */))); + connect( varsListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); } diff --git a/kxsldbg/kxsldbgpart/xsldbginspector.cpp b/kxsldbg/kxsldbgpart/xsldbginspector.cpp index 8b1a2734..7db6ce20 100644 --- a/kxsldbg/kxsldbgpart/xsldbginspector.cpp +++ b/kxsldbg/kxsldbgpart/xsldbginspector.cpp @@ -145,10 +145,10 @@ XsldbgInspector::XsldbgInspector( XsldbgDebugger *debugger, TQWidget* parent, XsldbgInspectorLayout->addMultiCellLayout( Layout1, 1, 1, 0, 1 ); // signals and slots connections - connect( buttonOk, TQT_SIGNAL( clicked() ), this, TQT_SLOT( accept() ) ); - connect( buttonApply, TQT_SIGNAL ( clicked() ), this, TQT_SLOT ( update() ) ); - connect( buttonRefresh, TQT_SIGNAL ( clicked() ), this, TQT_SLOT ( refresh() ) ); - connect( buttonCancel, TQT_SIGNAL( clicked() ), this, TQT_SLOT( reject() ) ); + connect( buttonOk, TQ_SIGNAL( clicked() ), this, TQ_SLOT( accept() ) ); + connect( buttonApply, TQ_SIGNAL ( clicked() ), this, TQ_SLOT ( update() ) ); + connect( buttonRefresh, TQ_SIGNAL ( clicked() ), this, TQ_SLOT ( refresh() ) ); + connect( buttonCancel, TQ_SIGNAL( clicked() ), this, TQ_SLOT( reject() ) ); hide(); } diff --git a/kxsldbg/kxsldbgpart/xsldbglocalvariablesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbglocalvariablesimpl.cpp index 7f3e857d..5926734e 100644 --- a/kxsldbg/kxsldbgpart/xsldbglocalvariablesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbglocalvariablesimpl.cpp @@ -31,14 +31,14 @@ XsldbgLocalVariablesImpl::XsldbgLocalVariablesImpl(XsldbgDebugger *debugger, : XsldbgLocalVariables(parent, name), XsldbgDialogBase() { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(variableItem(TQString /*name */, TQString /* templateContext*/, + connect(debugger, TQ_SIGNAL(variableItem(TQString /*name */, TQString /* templateContext*/, TQString /* fileName */, int /*lineNumber */, TQString /* select XPath */, int /* is it a local variable */)), - this, TQT_SLOT(slotProcVariableItem(TQString /*name */, TQString /* templateContext*/, + this, TQ_SLOT(slotProcVariableItem(TQString /*name */, TQString /* templateContext*/, TQString /* fileName */, int /*lineNumber */, TQString /* select XPath */, int /* is it a local variable */))); - connect(varsListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect(varsListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); } diff --git a/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp index f291ab6d..3bad8a51 100644 --- a/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgsourcesimpl.cpp @@ -28,11 +28,11 @@ XsldbgSourcesImpl::XsldbgSourcesImpl(XsldbgDebugger *debugger, : XsldbgSources(parent, name), XsldbgDialogBase() { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(sourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */)), - this, TQT_SLOT(slotProcSourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */))); + connect(debugger, TQ_SIGNAL(sourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */)), + this, TQ_SLOT(slotProcSourceItem(TQString /* fileName */, TQString /* parentFileName */, int /*lineNumber */))); - connect( sourceListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect( sourceListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); refresh(); diff --git a/kxsldbg/kxsldbgpart/xsldbgtemplatesimpl.cpp b/kxsldbg/kxsldbgpart/xsldbgtemplatesimpl.cpp index 66cb9227..2c0de0e9 100644 --- a/kxsldbg/kxsldbgpart/xsldbgtemplatesimpl.cpp +++ b/kxsldbg/kxsldbgpart/xsldbgtemplatesimpl.cpp @@ -27,10 +27,10 @@ XsldbgTemplatesImpl::XsldbgTemplatesImpl(XsldbgDebugger *debugger, { this->debugger = debugger; - connect(debugger, TQT_SIGNAL(templateItem(TQString /* name*/, TQString /*mode*/, TQString /* fileName */, int /* lineNumber */)), - this, TQT_SLOT(slotProcTemplateItem(TQString /* name*/, TQString /*mode*/, TQString /* fileName */, int /* lineNumber */))); - connect( templatesListView, TQT_SIGNAL(selectionChanged(TQListViewItem *)), - this, TQT_SLOT(selectionChanged(TQListViewItem*))); + connect(debugger, TQ_SIGNAL(templateItem(TQString /* name*/, TQString /*mode*/, TQString /* fileName */, int /* lineNumber */)), + this, TQ_SLOT(slotProcTemplateItem(TQString /* name*/, TQString /*mode*/, TQString /* fileName */, int /* lineNumber */))); + connect( templatesListView, TQ_SIGNAL(selectionChanged(TQListViewItem *)), + this, TQ_SLOT(selectionChanged(TQListViewItem*))); show(); } |