summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger')
-rw-r--r--languages/ruby/debugger/CMakeLists.txt8
-rw-r--r--languages/ruby/debugger/dbgcontroller.h2
-rw-r--r--languages/ruby/debugger/dbgpsdlg.cpp10
-rw-r--r--languages/ruby/debugger/dbgpsdlg.h2
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp38
-rw-r--r--languages/ruby/debugger/dbgtoolbar.h4
-rw-r--r--languages/ruby/debugger/debuggee.rb2
-rw-r--r--languages/ruby/debugger/debuggerpart.cpp180
-rw-r--r--languages/ruby/debugger/debuggerpart.h2
-rw-r--r--languages/ruby/debugger/framestackwidget.cpp4
-rw-r--r--languages/ruby/debugger/framestackwidget.h2
-rw-r--r--languages/ruby/debugger/kdevrbdebugger.desktop69
-rw-r--r--languages/ruby/debugger/rdbbreakpointwidget.cpp50
-rw-r--r--languages/ruby/debugger/rdbbreakpointwidget.h2
-rw-r--r--languages/ruby/debugger/rdbcontroller.cpp28
-rw-r--r--languages/ruby/debugger/rdbcontroller.h2
-rw-r--r--languages/ruby/debugger/rdboutputwidget.cpp4
-rw-r--r--languages/ruby/debugger/rdboutputwidget.h2
-rw-r--r--languages/ruby/debugger/rdbtable.h2
-rw-r--r--languages/ruby/debugger/stty.cpp2
-rw-r--r--languages/ruby/debugger/stty.h2
-rw-r--r--languages/ruby/debugger/variablewidget.cpp12
-rw-r--r--languages/ruby/debugger/variablewidget.h4
23 files changed, 191 insertions, 242 deletions
diff --git a/languages/ruby/debugger/CMakeLists.txt b/languages/ruby/debugger/CMakeLists.txt
index 8290afd7..5f03d2f8 100644
--- a/languages/ruby/debugger/CMakeLists.txt
+++ b/languages/ruby/debugger/CMakeLists.txt
@@ -29,7 +29,13 @@ link_directories(
##### other data ################################
tde_install_icons( )
-install( FILES kdevrbdebugger.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+
+tde_create_translated_desktop(
+ SOURCE kdevrbdebugger.desktop
+ DESTINATION ${SERVICES_INSTALL_DIR}
+ PO_DIR tdevelop-desktops
+)
+
install( FILES debuggee.rb DESTINATION ${DATA_INSTALL_DIR}/kdevrbdebugger )
install( FILES kdevrbdebugger.rc DESTINATION ${DATA_INSTALL_DIR}/kdevrbdebugger )
diff --git a/languages/ruby/debugger/dbgcontroller.h b/languages/ruby/debugger/dbgcontroller.h
index d49d30b8..e5a3f99a 100644
--- a/languages/ruby/debugger/dbgcontroller.h
+++ b/languages/ruby/debugger/dbgcontroller.h
@@ -79,7 +79,7 @@ enum RttiValues {
/***************************************************************************/
class DbgController : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/dbgpsdlg.cpp b/languages/ruby/debugger/dbgpsdlg.cpp
index 2aa67f51..f17c3ce0 100644
--- a/languages/ruby/debugger/dbgpsdlg.cpp
+++ b/languages/ruby/debugger/dbgpsdlg.cpp
@@ -71,15 +71,15 @@ Dbg_PS_Dialog::Dbg_PS_Dialog(TQWidget *parent, const char *name)
topLayout->addWidget(pids_, 5);
pids_->setFont(TDEGlobalSettings::fixedFont());
- KButtonBox *buttonbox = new KButtonBox(this, Qt::Horizontal, 5);
+ KButtonBox *buttonbox = new KButtonBox(this, TQt::Horizontal, 5);
TQPushButton *ok = buttonbox->addButton(KStdGuiItem::ok());
buttonbox->addStretch();
TQPushButton *cancel = buttonbox->addButton(KStdGuiItem::cancel());
buttonbox->layout();
topLayout->addWidget(buttonbox);
- connect(ok, TQT_SIGNAL(clicked()), TQT_SLOT(accept()));
- connect(cancel, TQT_SIGNAL(clicked()), TQT_SLOT(reject()));
+ connect(ok, TQ_SIGNAL(clicked()), TQ_SLOT(accept()));
+ connect(cancel, TQ_SIGNAL(clicked()), TQ_SLOT(reject()));
psProc_ = new KShellProcess("/bin/sh");
#ifdef USE_SOLARIS
@@ -106,8 +106,8 @@ Dbg_PS_Dialog::Dbg_PS_Dialog(TQWidget *parent, const char *name)
}
#endif
- connect( psProc_, TQT_SIGNAL(processExited(TDEProcess *)), TQT_SLOT(slotProcessExited()) );
- connect( psProc_, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)), TQT_SLOT(slotReceivedOutput(TDEProcess *, char *, int)) );
+ connect( psProc_, TQ_SIGNAL(processExited(TDEProcess *)), TQ_SLOT(slotProcessExited()) );
+ connect( psProc_, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)), TQ_SLOT(slotReceivedOutput(TDEProcess *, char *, int)) );
psProc_->start(TDEProcess::NotifyOnExit, TDEProcess::Stdout);
// Default display to 40 chars wide, default height is okay
diff --git a/languages/ruby/debugger/dbgpsdlg.h b/languages/ruby/debugger/dbgpsdlg.h
index 03e45ad9..f9e668b7 100644
--- a/languages/ruby/debugger/dbgpsdlg.h
+++ b/languages/ruby/debugger/dbgpsdlg.h
@@ -35,7 +35,7 @@ namespace RDBDebugger
class Dbg_PS_Dialog : public KDialog
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp
index 7dabbd3b..83b12d8d 100644
--- a/languages/ruby/debugger/dbgtoolbar.cpp
+++ b/languages/ruby/debugger/dbgtoolbar.cpp
@@ -113,13 +113,13 @@ void DbgMoveHandle::mousePressEvent(TQMouseEvent *e)
if (moving_)
return;
- if (e->button() == Qt::RightButton) {
+ if (e->button() == TQt::RightButton) {
TDEPopupMenu *menu = new TDEPopupMenu(this);
menu->insertTitle(i18n("Debug Toolbar"));
menu->insertItem(i18n("Dock to Panel"),
- parent(), TQT_SLOT(slotDock()));
+ parent(), TQ_SLOT(slotDock()));
menu->insertItem(i18n("Dock to Panel && Iconify TDevelop"),
- parent(), TQT_SLOT(slotIconifyAndDock()));
+ parent(), TQ_SLOT(slotIconifyAndDock()));
menu->popup(e->globalPos());
} else {
moving_ = true;
@@ -228,22 +228,22 @@ DbgDocker::DbgDocker(TQWidget* parent, DbgToolBar* toolBar, const TQPixmap& pixm
void DbgDocker::mousePressEvent(TQMouseEvent *e)
{
- if (!TQT_TQRECT_OBJECT(rect()).contains( e->pos()))
+ if (!rect().contains( e->pos()))
return;
switch (e->button()) {
- case Qt::LeftButton:
+ case TQt::LeftButton:
{
// Not really a click, but it'll hold for the time being !!!
emit clicked();
break;
}
- case Qt::RightButton:
+ case TQt::RightButton:
{
TDEPopupMenu* menu = new TDEPopupMenu(this);
menu->insertTitle(i18n("Debug Toolbar"));
- menu->insertItem(i18n("Activate"), toolBar_, TQT_SLOT(slotUndock()));
- menu->insertItem(i18n("Activate (TDevelop gets focus)"), toolBar_, TQT_SLOT(slotActivateAndUndock()));
+ menu->insertItem(i18n("Activate"), toolBar_, TQ_SLOT(slotUndock()));
+ menu->insertItem(i18n("Activate (TDevelop gets focus)"), toolBar_, TQ_SLOT(slotActivateAndUndock()));
menu->popup(e->globalPos());
break;
}
@@ -269,9 +269,9 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,
docker_(0),
dockWindow_(new KSystemTray(parent))
{
- winModule_ = new KWinModule(TQT_TQOBJECT(this));
+ winModule_ = new KWinModule(this);
docker_ = new DbgDocker(parent, this, BarIcon("dbgnext"));
- connect(docker_, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotStepOver()));
+ connect(docker_, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotStepOver()));
// Must have noFocus set so that we can see what window was active.
// see slotDbgKdevFocus() for more comments
@@ -284,7 +284,7 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,
// KWin::setType(winId(), NET::Override); // So it has no decoration
KWin::setType(winId(), NET::Dock);
- setFocusPolicy(TQ_NoFocus);
+ setFocusPolicy(TQWidget::NoFocus);
setFrameStyle( TQFrame::Box | TQFrame::Plain );
setLineWidth(4);
setMidLineWidth(0);
@@ -306,14 +306,14 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,
bPrevFocus_ = new DbgButton(BarIcon("dbgmemview"), TQString(), this);
bKDevFocus_ = new DbgButton(BarIcon("tdevelop"), TQString(), this);
- connect(bRun, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotRun()));
- connect(bInterrupt, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotPause()));
- connect(bNext, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotStepOver()));
- connect(bStep, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotStepInto()));
- connect(bFinish, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotStepOut()));
- connect(bRunTo, TQT_SIGNAL(clicked()), part_, TQT_SLOT(slotRunToCursor()));
- connect(bKDevFocus_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotKdevFocus()));
- connect(bPrevFocus_, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotPrevFocus()));
+ connect(bRun, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotRun()));
+ connect(bInterrupt, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotPause()));
+ connect(bNext, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotStepOver()));
+ connect(bStep, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotStepInto()));
+ connect(bFinish, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotStepOut()));
+ connect(bRunTo, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotRunToCursor()));
+ connect(bKDevFocus_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotKdevFocus()));
+ connect(bPrevFocus_, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotPrevFocus()));
TQToolTip::add( bRun, i18n("Continue with application execution, may start the application") );
TQToolTip::add( bInterrupt, i18n("Interrupt the application execution") );
diff --git a/languages/ruby/debugger/dbgtoolbar.h b/languages/ruby/debugger/dbgtoolbar.h
index 7a199391..a98dfc74 100644
--- a/languages/ruby/debugger/dbgtoolbar.h
+++ b/languages/ruby/debugger/dbgtoolbar.h
@@ -38,7 +38,7 @@ class RubyDebuggerPart;
class DbgDocker : public KSystemTray
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -56,7 +56,7 @@ private:
class DbgToolBar : public TQFrame
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/debuggee.rb b/languages/ruby/debugger/debuggee.rb
index 38e2dea7..75491f7d 100644
--- a/languages/ruby/debugger/debuggee.rb
+++ b/languages/ruby/debugger/debuggee.rb
@@ -269,7 +269,7 @@ class Context
for c in ary
str = debug_inspect(obj.module_eval(c))
if c.to_s != str &&
- str !~ /^Qt::|^KDE::/ && c.to_s !~ /@@classes$|@@cpp_names$|@@idclass$|@@debug_level$/ &&
+ str !~ /^TQt::|^KDE::/ && c.to_s !~ /@@classes$|@@cpp_names$|@@idclass$|@@debug_level$/ &&
c.to_s !~ /^DCOPMeta$|^Meta$|SCRIPT_LINES__|TRUE|FALSE|NIL|MatchingData/ &&
c.to_s !~ /^PLATFORM$|^RELEASE_DATE$|^VERSION$|SilentClient|SilentObject/ &&
c.to_s !~ /^Client$|^Context$|^DEBUG_LAST_CMD$|^MUTEX$|^Mutex$|^SimpleDelegater$|^Delegater$/ &&
diff --git a/languages/ruby/debugger/debuggerpart.cpp b/languages/ruby/debugger/debuggerpart.cpp
index bfa5de96..b5210bdb 100644
--- a/languages/ruby/debugger/debuggerpart.cpp
+++ b/languages/ruby/debugger/debuggerpart.cpp
@@ -148,19 +148,19 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
mainWindow()->setViewAvailable(rdbOutputWidget, false);
// rdbBreakpointWidget -> this
- connect( rdbBreakpointWidget, TQT_SIGNAL(refreshBPState(const Breakpoint&)),
- this, TQT_SLOT(slotRefreshBPState(const Breakpoint&)));
- connect( rdbBreakpointWidget, TQT_SIGNAL(publishBPState(const Breakpoint&)),
- this, TQT_SLOT(slotRefreshBPState(const Breakpoint&)));
- connect( rdbBreakpointWidget, TQT_SIGNAL(gotoSourcePosition(const TQString&, int)),
- this, TQT_SLOT(slotGotoSource(const TQString&, int)) );
+ connect( rdbBreakpointWidget, TQ_SIGNAL(refreshBPState(const Breakpoint&)),
+ this, TQ_SLOT(slotRefreshBPState(const Breakpoint&)));
+ connect( rdbBreakpointWidget, TQ_SIGNAL(publishBPState(const Breakpoint&)),
+ this, TQ_SLOT(slotRefreshBPState(const Breakpoint&)));
+ connect( rdbBreakpointWidget, TQ_SIGNAL(gotoSourcePosition(const TQString&, int)),
+ this, TQ_SLOT(slotGotoSource(const TQString&, int)) );
// Now setup the actions
TDEAction *action;
// action = new TDEAction(i18n("&Start"), "1rightarrow", CTRL+SHIFT+Key_F9,
action = new TDEAction(i18n("&Start"), "dbgrun", CTRL+SHIFT+Key_F9,
- this, TQT_SLOT(slotRun()),
+ this, TQ_SLOT(slotRun()),
actionCollection(), "debug_run");
action->setToolTip( i18n("Start in debugger") );
action->setWhatsThis( i18n("<b>Start in debugger</b><p>"
@@ -171,26 +171,26 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
"about variables, frame stack, and so on.") );
action = new TDEAction(i18n("Sto&p"), "process-stop", 0,
- this, TQT_SLOT(slotStop()),
+ this, TQ_SLOT(slotStop()),
actionCollection(), "debug_stop");
action->setToolTip( i18n("Stop debugger") );
action->setWhatsThis(i18n("<b>Stop debugger</b><p>Kills the executable and exits the debugger."));
action = new TDEAction(i18n("Interrupt"), "media-playback-pause", 0,
- this, TQT_SLOT(slotPause()),
+ this, TQ_SLOT(slotPause()),
actionCollection(), "debug_pause");
action->setToolTip( i18n("Interrupt application") );
action->setWhatsThis(i18n("<b>Interrupt application</b><p>Interrupts the debugged process or current RDB command."));
action = new TDEAction(i18n("Run to &Cursor"), "dbgrunto", 0,
- this, TQT_SLOT(slotRunToCursor()),
+ this, TQ_SLOT(slotRunToCursor()),
actionCollection(), "debug_runtocursor");
action->setToolTip( i18n("Run to cursor") );
action->setWhatsThis(i18n("<b>Run to cursor</b><p>Continues execution until the cursor position is reached."));
action = new TDEAction(i18n("Step &Over"), "dbgnext", 0,
- this, TQT_SLOT(slotStepOver()),
+ this, TQ_SLOT(slotStepOver()),
actionCollection(), "debug_stepover");
action->setToolTip( i18n("Step over the next line") );
action->setWhatsThis( i18n("<b>Step over</b><p>"
@@ -201,7 +201,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
action = new TDEAction(i18n("Step &Into"), "dbgstep", 0,
- this, TQT_SLOT(slotStepInto()),
+ this, TQ_SLOT(slotStepInto()),
actionCollection(), "debug_stepinto");
action->setToolTip( i18n("Step into the next statement") );
action->setWhatsThis( i18n("<b>Step into</b><p>"
@@ -212,7 +212,7 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
action = new TDEAction(i18n("Step O&ut"), "dbgstepout", 0,
- this, TQT_SLOT(slotStepOut()),
+ this, TQ_SLOT(slotStepOut()),
actionCollection(), "debug_stepout");
action->setToolTip( i18n("Steps out of the current method") );
action->setWhatsThis( i18n("<b>Step out</b><p>"
@@ -224,48 +224,48 @@ RubyDebuggerPart::RubyDebuggerPart( TQObject *parent, const char *name, const TQ
action = new TDEAction(i18n("Toggle Breakpoint"), 0, 0,
- this, TQT_SLOT(toggleBreakpoint()),
+ this, TQ_SLOT(toggleBreakpoint()),
actionCollection(), "debug_toggle_breakpoint");
action->setToolTip(i18n("Toggle breakpoint"));
action->setWhatsThis(i18n("<b>Toggle breakpoint</b><p>Toggles the breakpoint at the current line in editor."));
- connect( mainWindow()->main()->guiFactory(), TQT_SIGNAL(clientAdded(KXMLGUIClient*)),
- this, TQT_SLOT(guiClientAdded(KXMLGUIClient*)) );
+ connect( mainWindow()->main()->guiFactory(), TQ_SIGNAL(clientAdded(KXMLGUIClient*)),
+ this, TQ_SLOT(guiClientAdded(KXMLGUIClient*)) );
- connect( partController(), TQT_SIGNAL(loadedFile(const KURL &)),
- rdbBreakpointWidget, TQT_SLOT(slotRefreshBP(const KURL &)) );
- connect( debugger(), TQT_SIGNAL(toggledBreakpoint(const TQString &, int)),
- rdbBreakpointWidget, TQT_SLOT(slotToggleBreakpoint(const TQString &, int)) );
- connect( debugger(), TQT_SIGNAL(editedBreakpoint(const TQString &, int)),
- rdbBreakpointWidget, TQT_SLOT(slotEditBreakpoint(const TQString &, int)) );
- connect( debugger(), TQT_SIGNAL(toggledBreakpointEnabled(const TQString &, int)),
- rdbBreakpointWidget, TQT_SLOT(slotToggleBreakpointEnabled(const TQString &, int)) );
+ connect( partController(), TQ_SIGNAL(loadedFile(const KURL &)),
+ rdbBreakpointWidget, TQ_SLOT(slotRefreshBP(const KURL &)) );
+ connect( debugger(), TQ_SIGNAL(toggledBreakpoint(const TQString &, int)),
+ rdbBreakpointWidget, TQ_SLOT(slotToggleBreakpoint(const TQString &, int)) );
+ connect( debugger(), TQ_SIGNAL(editedBreakpoint(const TQString &, int)),
+ rdbBreakpointWidget, TQ_SLOT(slotEditBreakpoint(const TQString &, int)) );
+ connect( debugger(), TQ_SIGNAL(toggledBreakpointEnabled(const TQString &, int)),
+ rdbBreakpointWidget, TQ_SLOT(slotToggleBreakpointEnabled(const TQString &, int)) );
- connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
- this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
+ connect( core(), TQ_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
+ this, TQ_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
- connect( core(), TQT_SIGNAL(stopButtonClicked(KDevPlugin*)),
- this, TQT_SLOT(slotStop(KDevPlugin*)) );
- connect( core(), TQT_SIGNAL(projectClosed()),
- this, TQT_SLOT(projectClosed()) );
+ connect( core(), TQ_SIGNAL(stopButtonClicked(KDevPlugin*)),
+ this, TQ_SLOT(slotStop(KDevPlugin*)) );
+ connect( core(), TQ_SIGNAL(projectClosed()),
+ this, TQ_SLOT(projectClosed()) );
- connect( partController(), TQT_SIGNAL(activePartChanged(KParts::Part*)),
- this, TQT_SLOT(slotActivePartChanged(KParts::Part*)) );
+ connect( partController(), TQ_SIGNAL(activePartChanged(KParts::Part*)),
+ this, TQ_SLOT(slotActivePartChanged(KParts::Part*)) );
procLineMaker = new ProcessLineMaker();
- connect( procLineMaker, TQT_SIGNAL(receivedStdoutLine(const TQCString&)),
- appFrontend(), TQT_SLOT(insertStdoutLine(const TQCString&)) );
- connect( procLineMaker, TQT_SIGNAL(receivedStderrLine(const TQCString&)),
- appFrontend(), TQT_SLOT(insertStderrLine(const TQCString&)) );
- connect( procLineMaker, TQT_SIGNAL(receivedPartialStdoutLine(const TQCString&)),
- appFrontend(), TQT_SLOT(addPartialStdoutLine(const TQCString&)) );
- connect( procLineMaker, TQT_SIGNAL(receivedPartialStderrLine(const TQCString&)),
- appFrontend(), TQT_SLOT(addPartialStderrLine(const TQCString&)) );
+ connect( procLineMaker, TQ_SIGNAL(receivedStdoutLine(const TQCString&)),
+ appFrontend(), TQ_SLOT(insertStdoutLine(const TQCString&)) );
+ connect( procLineMaker, TQ_SIGNAL(receivedStderrLine(const TQCString&)),
+ appFrontend(), TQ_SLOT(insertStderrLine(const TQCString&)) );
+ connect( procLineMaker, TQ_SIGNAL(receivedPartialStdoutLine(const TQCString&)),
+ appFrontend(), TQ_SLOT(addPartialStdoutLine(const TQCString&)) );
+ connect( procLineMaker, TQ_SIGNAL(receivedPartialStderrLine(const TQCString&)),
+ appFrontend(), TQ_SLOT(addPartialStderrLine(const TQCString&)) );
setupController();
- TQTimer::singleShot(0, this, TQT_SLOT(setupDcop()));
+ TQTimer::singleShot(0, this, TQ_SLOT(setupDcop()));
}
RubyDebuggerPart::~RubyDebuggerPart()
@@ -311,16 +311,16 @@ void RubyDebuggerPart::contextMenu(TQPopupMenu *popup, const Context *context)
popup->insertSeparator();
if (econtext->url().isLocalFile())
{
- int id = popup->insertItem( i18n("Toggle Breakpoint"), this, TQT_SLOT(toggleBreakpoint()) );
+ int id = popup->insertItem( i18n("Toggle Breakpoint"), this, TQ_SLOT(toggleBreakpoint()) );
popup->setWhatsThis(id, i18n("<b>Toggle breakpoint</b><p>Toggles breakpoint at the current line."));
}
if (!m_contextIdent.isEmpty())
{
TQString squeezed = KStringHandler::csqueeze(m_contextIdent, 30);
- int id = popup->insertItem( i18n("Watch: %1").arg(squeezed), this, TQT_SLOT(contextWatch()) );
+ int id = popup->insertItem( i18n("Watch: %1").arg(squeezed), this, TQ_SLOT(contextWatch()) );
popup->setWhatsThis(id, i18n("<b>Watch</b><p>Adds an expression under the cursor to the Variables/Watch list."));
- id = popup->insertItem( i18n("Inspect: %1").arg(squeezed), this, TQT_SLOT(contextRubyInspect()) );
+ id = popup->insertItem( i18n("Inspect: %1").arg(squeezed), this, TQ_SLOT(contextRubyInspect()) );
popup->setWhatsThis(id, i18n("<b>Inspect</b><p>Evaluates an expression under the cursor."));
}
}
@@ -362,74 +362,74 @@ void RubyDebuggerPart::setupController()
controller = new RDBController(variableTree, framestackWidget, *projectDom());
// this -> controller
- connect( this, TQT_SIGNAL(rubyInspect(const TQString&)),
- controller, TQT_SLOT(slotRubyInspect(const TQString&)));
+ connect( this, TQ_SIGNAL(rubyInspect(const TQString&)),
+ controller, TQ_SLOT(slotRubyInspect(const TQString&)));
// variableTree -> framestackWidget
- connect( variableTree, TQT_SIGNAL(selectFrame(int, int)),
- framestackWidget, TQT_SLOT(slotSelectFrame(int, int)));
+ connect( variableTree, TQ_SIGNAL(selectFrame(int, int)),
+ framestackWidget, TQ_SLOT(slotSelectFrame(int, int)));
// framestackWidget -> variableTree
- connect( framestackWidget, TQT_SIGNAL(frameActive(int, int, const TQString&)),
- variableTree, TQT_SLOT(slotFrameActive(int, int, const TQString&)));
+ connect( framestackWidget, TQ_SIGNAL(frameActive(int, int, const TQString&)),
+ variableTree, TQ_SLOT(slotFrameActive(int, int, const TQString&)));
// variableTree -> controller
- connect( variableTree, TQT_SIGNAL(expandItem(VarItem*, const TQCString&)),
- controller, TQT_SLOT(slotExpandItem(VarItem*, const TQCString&)));
- connect( variableTree, TQT_SIGNAL(fetchGlobals(bool)),
- controller, TQT_SLOT(slotFetchGlobals(bool)));
- connect( variableTree, TQT_SIGNAL(addWatchExpression(const TQString&, bool)),
- controller, TQT_SLOT(slotAddWatchExpression(const TQString&, bool)));
- connect( variableTree, TQT_SIGNAL(removeWatchExpression(int)),
- controller, TQT_SLOT(slotRemoveWatchExpression(int)));
+ connect( variableTree, TQ_SIGNAL(expandItem(VarItem*, const TQCString&)),
+ controller, TQ_SLOT(slotExpandItem(VarItem*, const TQCString&)));
+ connect( variableTree, TQ_SIGNAL(fetchGlobals(bool)),
+ controller, TQ_SLOT(slotFetchGlobals(bool)));
+ connect( variableTree, TQ_SIGNAL(addWatchExpression(const TQString&, bool)),
+ controller, TQ_SLOT(slotAddWatchExpression(const TQString&, bool)));
+ connect( variableTree, TQ_SIGNAL(removeWatchExpression(int)),
+ controller, TQ_SLOT(slotRemoveWatchExpression(int)));
// framestackWidget -> controller
- connect( framestackWidget, TQT_SIGNAL(selectFrame(int,int,const TQString&)),
- controller, TQT_SLOT(slotSelectFrame(int,int,const TQString&)));
+ connect( framestackWidget, TQ_SIGNAL(selectFrame(int,int,const TQString&)),
+ controller, TQ_SLOT(slotSelectFrame(int,int,const TQString&)));
// rdbBreakpointWidget -> controller
- connect( rdbBreakpointWidget, TQT_SIGNAL(clearAllBreakpoints()),
- controller, TQT_SLOT(slotClearAllBreakpoints()));
- connect( rdbBreakpointWidget, TQT_SIGNAL(publishBPState(const Breakpoint&)),
- controller, TQT_SLOT(slotBPState(const Breakpoint &)));
+ connect( rdbBreakpointWidget, TQ_SIGNAL(clearAllBreakpoints()),
+ controller, TQ_SLOT(slotClearAllBreakpoints()));
+ connect( rdbBreakpointWidget, TQ_SIGNAL(publishBPState(const Breakpoint&)),
+ controller, TQ_SLOT(slotBPState(const Breakpoint &)));
// rdbOutputWidget -> controller
- connect( rdbOutputWidget, TQT_SIGNAL(userRDBCmd(const TQString &)),
- controller, TQT_SLOT(slotUserRDBCmd(const TQString&)));
- connect( rdbOutputWidget, TQT_SIGNAL(breakInto()),
- controller, TQT_SLOT(slotBreakInto()));
+ connect( rdbOutputWidget, TQ_SIGNAL(userRDBCmd(const TQString &)),
+ controller, TQ_SLOT(slotUserRDBCmd(const TQString&)));
+ connect( rdbOutputWidget, TQ_SIGNAL(breakInto()),
+ controller, TQ_SLOT(slotBreakInto()));
// controller -> rdbBreakpointWidget
- connect( controller, TQT_SIGNAL(acceptPendingBPs()),
- rdbBreakpointWidget, TQT_SLOT(slotSetPendingBPs()));
- connect( controller, TQT_SIGNAL(unableToSetBPNow(int)),
- rdbBreakpointWidget, TQT_SLOT(slotUnableToSetBPNow(int)));
- connect( controller, TQT_SIGNAL(rawRDBBreakpointList (char*)),
- rdbBreakpointWidget, TQT_SLOT(slotParseRDBBrkptList(char*)));
- connect( controller, TQT_SIGNAL(rawRDBBreakpointSet(char*, int)),
- rdbBreakpointWidget, TQT_SLOT(slotParseRDBBreakpointSet(char*, int)));
+ connect( controller, TQ_SIGNAL(acceptPendingBPs()),
+ rdbBreakpointWidget, TQ_SLOT(slotSetPendingBPs()));
+ connect( controller, TQ_SIGNAL(unableToSetBPNow(int)),
+ rdbBreakpointWidget, TQ_SLOT(slotUnableToSetBPNow(int)));
+ connect( controller, TQ_SIGNAL(rawRDBBreakpointList (char*)),
+ rdbBreakpointWidget, TQ_SLOT(slotParseRDBBrkptList(char*)));
+ connect( controller, TQ_SIGNAL(rawRDBBreakpointSet(char*, int)),
+ rdbBreakpointWidget, TQ_SLOT(slotParseRDBBreakpointSet(char*, int)));
// controller -> this
- connect( controller, TQT_SIGNAL(dbgStatus(const TQString&, int)),
- this, TQT_SLOT(slotStatus(const TQString&, int)));
- connect( controller, TQT_SIGNAL(showStepInSource(const TQString&, int, const TQString&)),
- this, TQT_SLOT(slotShowStep(const TQString&, int)));
+ connect( controller, TQ_SIGNAL(dbgStatus(const TQString&, int)),
+ this, TQ_SLOT(slotStatus(const TQString&, int)));
+ connect( controller, TQ_SIGNAL(showStepInSource(const TQString&, int, const TQString&)),
+ this, TQ_SLOT(slotShowStep(const TQString&, int)));
// controller -> procLineMaker
- connect( controller, TQT_SIGNAL(ttyStdout(const char*)),
- procLineMaker, TQT_SLOT(slotReceivedStdout(const char*)));
- connect( controller, TQT_SIGNAL(ttyStderr(const char*)),
- procLineMaker, TQT_SLOT(slotReceivedStderr(const char*)));
+ connect( controller, TQ_SIGNAL(ttyStdout(const char*)),
+ procLineMaker, TQ_SLOT(slotReceivedStdout(const char*)));
+ connect( controller, TQ_SIGNAL(ttyStderr(const char*)),
+ procLineMaker, TQ_SLOT(slotReceivedStderr(const char*)));
// controller -> rdbOutputWidget
- connect( controller, TQT_SIGNAL(rdbStdout(const char*)),
- rdbOutputWidget, TQT_SLOT(slotReceivedStdout(const char*)) );
- connect( controller, TQT_SIGNAL(rdbStderr(const char*)),
- rdbOutputWidget, TQT_SLOT(slotReceivedStderr(const char*)) );
- connect( controller, TQT_SIGNAL(dbgStatus(const TQString&, int)),
- rdbOutputWidget, TQT_SLOT(slotDbgStatus(const TQString&, int)));
+ connect( controller, TQ_SIGNAL(rdbStdout(const char*)),
+ rdbOutputWidget, TQ_SLOT(slotReceivedStdout(const char*)) );
+ connect( controller, TQ_SIGNAL(rdbStderr(const char*)),
+ rdbOutputWidget, TQ_SLOT(slotReceivedStderr(const char*)) );
+ connect( controller, TQ_SIGNAL(dbgStatus(const TQString&, int)),
+ rdbOutputWidget, TQ_SLOT(slotDbgStatus(const TQString&, int)));
}
diff --git a/languages/ruby/debugger/debuggerpart.h b/languages/ruby/debugger/debuggerpart.h
index 498a159e..4dfd1958 100644
--- a/languages/ruby/debugger/debuggerpart.h
+++ b/languages/ruby/debugger/debuggerpart.h
@@ -47,7 +47,7 @@ class RDBOutputWidget;
class RubyDebuggerPart : public KDevPlugin
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/framestackwidget.cpp b/languages/ruby/debugger/framestackwidget.cpp
index 4d90092f..024cff2c 100644
--- a/languages/ruby/debugger/framestackwidget.cpp
+++ b/languages/ruby/debugger/framestackwidget.cpp
@@ -51,8 +51,8 @@ FramestackWidget::FramestackWidget(TQWidget *parent, const char *name, WFlags f)
setSorting(0);
header()->hide();
- connect( this, TQT_SIGNAL(clicked(TQListViewItem*)),
- this, TQT_SLOT(slotSelectionChanged(TQListViewItem*)) );
+ connect( this, TQ_SIGNAL(clicked(TQListViewItem*)),
+ this, TQ_SLOT(slotSelectionChanged(TQListViewItem*)) );
}
diff --git a/languages/ruby/debugger/framestackwidget.h b/languages/ruby/debugger/framestackwidget.h
index 7f970c31..ba3aacb7 100644
--- a/languages/ruby/debugger/framestackwidget.h
+++ b/languages/ruby/debugger/framestackwidget.h
@@ -81,7 +81,7 @@ private:
*/
class FramestackWidget : public TQListView
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/kdevrbdebugger.desktop b/languages/ruby/debugger/kdevrbdebugger.desktop
index 59911424..6592cfb3 100644
--- a/languages/ruby/debugger/kdevrbdebugger.desktop
+++ b/languages/ruby/debugger/kdevrbdebugger.desktop
@@ -1,69 +1,12 @@
[Desktop Entry]
-Type=Service
-Exec=blubb
-Comment=This plugin provides a frontend for the source-level debugger for Ruby.
-Comment[ca]=Aquest connector proveeix una interfície per a la depuració a nivell de codi per a Ruby.
-Comment[da]=Dette plugin sørger for en grænseflade til Ruby kildekode-fejlretteren.
-Comment[de]=Dieses Modul stellt eine Oberfläche für den Quelltext-Debugger für Ruby bereit.
-Comment[el]=Αυτό το πρόσθετο προσφέρει ένα πρόγραμμα για τον αποσφαλματωτή πηγαίου κώδικα της γλώσσας Ruby.
-Comment[es]=Este complemento proporciona un entorno para depurar código de Ruby.
-Comment[et]=See plugin pakub Ruby lähtekoodi siluri kasutajaliidest.
-Comment[eu]=Plugin honek Ruby-ren iturburu-mailako araztailearen interfaze bat bat eskeintzen du.
-Comment[fa]=این وصله، یک پایانه برای اشکال‌زدای سطح منبع رابی فراهم می‌کند.
-Comment[fr]=Ce module externe fournit une interface pour le débogueur au niveau source pour Ruby.
-Comment[gl]=Esta extensión proporciona un frontal para o depurador a nivel de código de Ruby.
-Comment[hu]=Ez a bővítőmodul grafikus felületet biztosít a Ruby forrásszintű nyomkövetőjének használatához.
-Comment[it]=Questo plugin fornisce un'interfaccia per il debugger a livello sorgente di Ruby.
-Comment[ja]=このプラグインは、Ruby のソースレベルデバッガのフロントエンドを提供します。
-Comment[nds]=Dit Moduul stellt en Böversiet för den Ruby-Borntextfehlersöker praat.
-Comment[ne]=यो प्लगइनले रूबिका लागि स्रोत-तह डिबगरका लागि फ्रेन्टइन्ड प्रदान गर्दछ ।
-Comment[nl]=Deze plugin biedt een grafische schil voor de broncode-debugger voor Ruby.
-Comment[pl]=Ta wtyczka udostępnia interfejs do debugera poziomu źródłowego dla języka Ruby.
-Comment[pt]=Este 'plugin' oferece uma interface o depurador ao nível do código para Ruby.
-Comment[pt_BR]=Este plug-in fornece uma interface para o depurador a nível de código para Ruby.
-Comment[ru]=Этот модуль предоставляет интерфейс к отладчику исходного кода для Ruby.
-Comment[sk]=Modul pre rozhranie debugera pre Ruby.
-Comment[sr]=Овај прикључак обезбеђује интерфејс за исправљач на нивоу изворног кода за Ruby.
-Comment[sr@Latn]=Ovaj priključak obezbeđuje interfejs za ispravljač na nivou izvornog koda za Ruby.
-Comment[sv]=Insticksprogrammet tillhandahåller ett gränssnitt till källkodsavlusaren för Ruby.
-Comment[tr]=Bu eklenti, Ruby için kaynak-düzeyi hata ayıklayıcıya bir önuç sağlar.
-Comment[zh_CN]=此插件提供了一个 Ruby 的源代码级调试器的前端。
-Comment[zh_TW]=此外掛程式提供 Ruby 除錯器的前端介面。
Name=KDevRbDebugger
-Name[da]=TDevelop Ruby fejlretter
-Name[nds]=Ruby-Fehlersöök för TDevelop
-Name[pl]=KDevDebugerRb
-Name[sk]=KDev Ruby debuger
-Name[sv]=TDevelop Ruby-avlusare
-Name[zh_TW]=TDevelop Ruby 除錯器
+
GenericName=Ruby Debugger Frontend
-GenericName[ca]=Interfície per al depurador Ruby
-GenericName[da]=Ruby fejlretningsgrænseflade
-GenericName[de]=Debugger-Oberfläche für Ruby
-GenericName[el]=Πρόγραμμα αποσφαλματωτή Ruby
-GenericName[es]=Interfaz para el depurador de Ruby
-GenericName[et]=Ruby siluri kasutajaliides
-GenericName[eu]=Ruby araztailearen interfazea
-GenericName[fa]=پایانۀ اشکال‌زدای رابی
-GenericName[fr]=Interface du débogueur pour Ruby
-GenericName[gl]=Frontal do depurador Ruby
-GenericName[hu]=Grafikus felület a Ruby nyomkövetőjéhez
-GenericName[it]=Interfaccia di debug per Ruby
-GenericName[ja]=Ruby デバッガフロントエンド
-GenericName[nds]=Böversiet för den Ruby-Fehlersöker
-GenericName[ne]=रूबि डिबगर फ्रेन्टइन्ड
-GenericName[nl]=Grafische schil voor de Ruby-debugger
-GenericName[pl]=Interfejs do debugera dla języka Ruby
-GenericName[pt]=Interface de Depuração Ruby
-GenericName[pt_BR]=Interface para o Depurador Ruby
-GenericName[ru]=Интегрированный отладчик Ruby
-GenericName[sk]=Ruby debuger rozhranie
-GenericName[sr]=Интерфејс исправљача за Ruby
-GenericName[sr@Latn]=Interfejs ispravljača za Ruby
-GenericName[sv]=Gränssnitt för Ruby-avlusare
-GenericName[tr]=Ruby Hata Ayıklayıcı Önucu
-GenericName[zh_CN]=Ruby 调试器前端
-GenericName[zh_TW]=Ruby 除錯器前端介面
+
+Comment=This plugin provides a frontend for the source-level debugger for Ruby.
+
+Type=Service
+Exec=blubb
Icon=
X-TDE-ServiceTypes=TDevelop/Plugin
X-TDE-Library=libkdevrbdebugger
diff --git a/languages/ruby/debugger/rdbbreakpointwidget.cpp b/languages/ruby/debugger/rdbbreakpointwidget.cpp
index f8e86ad7..92170f52 100644
--- a/languages/ruby/debugger/rdbbreakpointwidget.cpp
+++ b/languages/ruby/debugger/rdbbreakpointwidget.cpp
@@ -239,34 +239,34 @@ RDBBreakpointWidget::RDBBreakpointWidget(TQWidget *parent, const char *name) :
m_ctxMenu->insertItem( i18n( "Disable" ), BW_ITEM_Disable );
m_ctxMenu->insertItem( i18n( "Delete" ), BW_ITEM_Delete );
- connect( addMenu, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotAddBlankBreakpoint(int)) );
- connect( m_delete, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotRemoveBreakpoint()) );
- connect( m_edit, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotEditBreakpoint()) );
- connect( m_removeAll, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotRemoveAllBreakpoints()) );
+ connect( addMenu, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotAddBlankBreakpoint(int)) );
+ connect( m_delete, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotRemoveBreakpoint()) );
+ connect( m_edit, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotEditBreakpoint()) );
+ connect( m_removeAll, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotRemoveAllBreakpoints()) );
- connect( m_table, TQT_SIGNAL(contextMenuRequested(int, int, const TQPoint &)),
- this, TQT_SLOT(slotContextMenuShow(int, int, const TQPoint & )) );
- connect( m_ctxMenu, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotContextMenuSelect(int)) );
+ connect( m_table, TQ_SIGNAL(contextMenuRequested(int, int, const TQPoint &)),
+ this, TQ_SLOT(slotContextMenuShow(int, int, const TQPoint & )) );
+ connect( m_ctxMenu, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotContextMenuSelect(int)) );
- connect( m_table, TQT_SIGNAL(doubleClicked(int, int, int, const TQPoint &)),
- this, TQT_SLOT(slotRowDoubleClicked(int, int, int, const TQPoint &)));
+ connect( m_table, TQ_SIGNAL(doubleClicked(int, int, int, const TQPoint &)),
+ this, TQ_SLOT(slotRowDoubleClicked(int, int, int, const TQPoint &)));
- connect( m_table, TQT_SIGNAL(valueChanged(int, int)),
- this, TQT_SLOT(slotNewValue(int, int)));
+ connect( m_table, TQ_SIGNAL(valueChanged(int, int)),
+ this, TQ_SLOT(slotNewValue(int, int)));
- connect( m_table, TQT_SIGNAL(returnPressed()),
- this, TQT_SLOT(slotEditBreakpoint()));
-// connect( m_table, TQT_SIGNAL(f2Pressed()),
-// this, TQT_SLOT(slotEditBreakpoint()));
- connect( m_table, TQT_SIGNAL(deletePressed()),
- this, TQT_SLOT(slotRemoveBreakpoint()));
- connect( m_table, TQT_SIGNAL(insertPressed()),
- this, TQT_SLOT(slotAddBreakpoint()));
+ connect( m_table, TQ_SIGNAL(returnPressed()),
+ this, TQ_SLOT(slotEditBreakpoint()));
+// connect( m_table, TQ_SIGNAL(f2Pressed()),
+// this, TQ_SLOT(slotEditBreakpoint()));
+ connect( m_table, TQ_SIGNAL(deletePressed()),
+ this, TQ_SLOT(slotRemoveBreakpoint()));
+ connect( m_table, TQ_SIGNAL(insertPressed()),
+ this, TQ_SLOT(slotAddBreakpoint()));
}
/***************************************************************************/
@@ -634,7 +634,7 @@ void RDBBreakpointWidget::slotRemoveAllBreakpoints()
void RDBBreakpointWidget::slotRowDoubleClicked(int row, int col, int btn, const TQPoint &)
{
- if ( btn == Qt::LeftButton )
+ if ( btn == TQt::LeftButton )
{
// kdDebug(9012) << "in slotRowSelected row=" << row << endl;
BreakpointTableRow* btr = (BreakpointTableRow *) m_table->item(row, Control);
diff --git a/languages/ruby/debugger/rdbbreakpointwidget.h b/languages/ruby/debugger/rdbbreakpointwidget.h
index 2b8186a8..c11d2a22 100644
--- a/languages/ruby/debugger/rdbbreakpointwidget.h
+++ b/languages/ruby/debugger/rdbbreakpointwidget.h
@@ -41,7 +41,7 @@ class RDBTable;
class RDBBreakpointWidget : public TQHBox
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/rdbcontroller.cpp b/languages/ruby/debugger/rdbcontroller.cpp
index 16ce7179..94204089 100644
--- a/languages/ruby/debugger/rdbcontroller.cpp
+++ b/languages/ruby/debugger/rdbcontroller.cpp
@@ -130,8 +130,8 @@ RDBController::RDBController(VariableTree *varTree, FramestackWidget *frameStack
bind(masterSocket_, (const struct sockaddr*) &sockaddr, sizeof(sockaddr));
listen(masterSocket_, 1);
acceptNotifier_ = new TQSocketNotifier(masterSocket_, TQSocketNotifier::Read, this);
- TQObject::connect( acceptNotifier_, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotAcceptConnection(int)) );
+ TQObject::connect( acceptNotifier_, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotAcceptConnection(int)) );
configure();
cmdList_.setAutoDelete(true);
@@ -696,8 +696,8 @@ void RDBController::slotStart(const TQString& ruby_interpreter, const TQString&
tty_ = new STTY(config_dbgTerminal_, Settings::terminalEmulatorName( *kapp->config() ));
if (!config_dbgTerminal_)
{
- connect( tty_, TQT_SIGNAL(OutOutput(const char*)), TQT_SIGNAL(ttyStdout(const char*)) );
- connect( tty_, TQT_SIGNAL(ErrOutput(const char*)), TQT_SIGNAL(ttyStderr(const char*)) );
+ connect( tty_, TQ_SIGNAL(OutOutput(const char*)), TQ_SIGNAL(ttyStdout(const char*)) );
+ connect( tty_, TQ_SIGNAL(ErrOutput(const char*)), TQ_SIGNAL(ttyStderr(const char*)) );
}
TQString tty(tty_->getSlave());
@@ -716,17 +716,17 @@ void RDBController::slotStart(const TQString& ruby_interpreter, const TQString&
dbgProcess_ = new TDEProcess;
- connect( dbgProcess_, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)),
- this, TQT_SLOT(slotDbgStdout(TDEProcess *, char *, int)) );
+ connect( dbgProcess_, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)),
+ this, TQ_SLOT(slotDbgStdout(TDEProcess *, char *, int)) );
- connect( dbgProcess_, TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
- this, TQT_SLOT(slotDbgStderr(TDEProcess *, char *, int)) );
+ connect( dbgProcess_, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
+ this, TQ_SLOT(slotDbgStderr(TDEProcess *, char *, int)) );
- connect( dbgProcess_, TQT_SIGNAL(wroteStdin(TDEProcess *)),
- this, TQT_SLOT(slotDbgWroteStdin(TDEProcess *)) );
+ connect( dbgProcess_, TQ_SIGNAL(wroteStdin(TDEProcess *)),
+ this, TQ_SLOT(slotDbgWroteStdin(TDEProcess *)) );
- connect( dbgProcess_, TQT_SIGNAL(processExited(TDEProcess*)),
- this, TQT_SLOT(slotDbgProcessExited(TDEProcess*)) );
+ connect( dbgProcess_, TQ_SIGNAL(processExited(TDEProcess*)),
+ this, TQ_SLOT(slotDbgProcessExited(TDEProcess*)) );
rubyInterpreter_ = ruby_interpreter;
characterCoding_ = character_coding;
@@ -1199,8 +1199,8 @@ void RDBController::slotAcceptConnection(int masterSocket)
}
socketNotifier_ = new TQSocketNotifier(socket_, TQSocketNotifier::Read, 0);
- TQObject::connect( socketNotifier_, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotReadFromSocket(int)) );
+ TQObject::connect( socketNotifier_, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotReadFromSocket(int)) );
setStateOff(s_dbgNotStarted);
emit dbgStatus ("", state_);
diff --git a/languages/ruby/debugger/rdbcontroller.h b/languages/ruby/debugger/rdbcontroller.h
index ce2247e9..f28302db 100644
--- a/languages/ruby/debugger/rdbcontroller.h
+++ b/languages/ruby/debugger/rdbcontroller.h
@@ -55,7 +55,7 @@ class STTY;
class RDBController : public DbgController
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/rdboutputwidget.cpp b/languages/ruby/debugger/rdboutputwidget.cpp
index 575d60ad..52ba2c0f 100644
--- a/languages/ruby/debugger/rdboutputwidget.cpp
+++ b/languages/ruby/debugger/rdboutputwidget.cpp
@@ -81,8 +81,8 @@ RDBOutputWidget::RDBOutputWidget( TQWidget *parent, const char *name) :
slotDbgStatus( "", s_dbgNotStarted);
- connect( m_userRDBCmdEditor, TQT_SIGNAL(returnPressed()), TQT_SLOT(slotRDBCmd()) );
- connect( m_Interrupt, TQT_SIGNAL(clicked()), TQT_SIGNAL(breakInto()));
+ connect( m_userRDBCmdEditor, TQ_SIGNAL(returnPressed()), TQ_SLOT(slotRDBCmd()) );
+ connect( m_Interrupt, TQ_SIGNAL(clicked()), TQ_SIGNAL(breakInto()));
}
/***************************************************************************/
diff --git a/languages/ruby/debugger/rdboutputwidget.h b/languages/ruby/debugger/rdboutputwidget.h
index 50b1ea7f..3f96aeed 100644
--- a/languages/ruby/debugger/rdboutputwidget.h
+++ b/languages/ruby/debugger/rdboutputwidget.h
@@ -36,7 +36,7 @@ namespace RDBDebugger
class RDBOutputWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/rdbtable.h b/languages/ruby/debugger/rdbtable.h
index 35ee6f9f..1cf6bfe5 100644
--- a/languages/ruby/debugger/rdbtable.h
+++ b/languages/ruby/debugger/rdbtable.h
@@ -22,7 +22,7 @@ namespace RDBDebugger {
class RDBTable : public TQTable
{
-Q_OBJECT
+TQ_OBJECT
public:
RDBTable(TQWidget *parent = 0, const char *name = 0);
diff --git a/languages/ruby/debugger/stty.cpp b/languages/ruby/debugger/stty.cpp
index 73ea4784..bacb21d9 100644
--- a/languages/ruby/debugger/stty.cpp
+++ b/languages/ruby/debugger/stty.cpp
@@ -131,7 +131,7 @@ STTY::STTY(bool ext, const TQString &termAppName)
if (fout >= 0) {
ttySlave = TQString(tty_slave);
out = new TQSocketNotifier(fout, TQSocketNotifier::Read, this);
- connect( out, TQT_SIGNAL(activated(int)), this, TQT_SLOT(OutReceived(int)) );
+ connect( out, TQ_SIGNAL(activated(int)), this, TQ_SLOT(OutReceived(int)) );
}
}
}
diff --git a/languages/ruby/debugger/stty.h b/languages/ruby/debugger/stty.h
index ead3dede..908872dd 100644
--- a/languages/ruby/debugger/stty.h
+++ b/languages/ruby/debugger/stty.h
@@ -35,7 +35,7 @@ namespace RDBDebugger
class STTY : public TQObject
{
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/languages/ruby/debugger/variablewidget.cpp b/languages/ruby/debugger/variablewidget.cpp
index 94fd4e88..c4173dfb 100644
--- a/languages/ruby/debugger/variablewidget.cpp
+++ b/languages/ruby/debugger/variablewidget.cpp
@@ -71,8 +71,8 @@ VariableWidget::VariableWidget(TQWidget *parent, const char *name)
topLayout->addWidget(varTree_, 10);
topLayout->addLayout( vbox );
- connect( addButton, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddWatchExpression()) );
- connect( watchVarEditor_, TQT_SIGNAL(returnPressed()), TQT_SLOT(slotAddWatchExpression()) );
+ connect( addButton, TQ_SIGNAL(clicked()), TQ_SLOT(slotAddWatchExpression()) );
+ connect( watchVarEditor_, TQ_SIGNAL(returnPressed()), TQ_SLOT(slotAddWatchExpression()) );
}
@@ -145,11 +145,11 @@ VariableTree::VariableTree(VariableWidget *parent, const char *name)
addColumn(i18n("Variable"), 100 );
addColumn(i18n("Value"), 100 );
- connect( this, TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
- TQT_SLOT(slotContextMenu(TDEListView*, TQListViewItem*)) );
+ connect( this, TQ_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
+ TQ_SLOT(slotContextMenu(TDEListView*, TQListViewItem*)) );
- connect( this, TQT_SIGNAL(pressed(TQListViewItem*)),
- this, TQT_SLOT(slotPressed(TQListViewItem*)) );
+ connect( this, TQ_SIGNAL(pressed(TQListViewItem*)),
+ this, TQ_SLOT(slotPressed(TQListViewItem*)) );
watchRoot_ = new WatchRoot(this);
}
diff --git a/languages/ruby/debugger/variablewidget.h b/languages/ruby/debugger/variablewidget.h
index 3fce8225..4667184b 100644
--- a/languages/ruby/debugger/variablewidget.h
+++ b/languages/ruby/debugger/variablewidget.h
@@ -62,7 +62,7 @@ enum DataType {
class VariableWidget : public TQWidget
{
- Q_OBJECT
+ TQ_OBJECT
public:
@@ -94,7 +94,7 @@ private:
class VariableTree : public TDEListView, public TQToolTip
{
- Q_OBJECT
+ TQ_OBJECT
//we need this to be able to emit expandItem() from within LazyFetchItem
friend class LazyFetchItem;