|
|
|
@ -149,7 +149,7 @@ DebuggerMainWnd::DebuggerMainWnd(const char* name) :
|
|
|
|
|
connect(m_localVariables, TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)),
|
|
|
|
|
this, TQ_SLOT(slotLocalsPopup(TQListViewItem*, const TQPoint&)));
|
|
|
|
|
|
|
|
|
|
restoreSettings(kapp->config());
|
|
|
|
|
restoreSettings(tdeApp->config());
|
|
|
|
|
|
|
|
|
|
updateUI();
|
|
|
|
|
m_bpTable->updateUI();
|
|
|
|
@ -157,7 +157,7 @@ DebuggerMainWnd::DebuggerMainWnd(const char* name) :
|
|
|
|
|
|
|
|
|
|
DebuggerMainWnd::~DebuggerMainWnd()
|
|
|
|
|
{
|
|
|
|
|
saveSettings(kapp->config());
|
|
|
|
|
saveSettings(tdeApp->config());
|
|
|
|
|
// must delete m_debugger early since it references our windows
|
|
|
|
|
delete m_debugger;
|
|
|
|
|
m_debugger = 0;
|
|
|
|
@ -191,7 +191,7 @@ void DebuggerMainWnd::initKAction()
|
|
|
|
|
actionCollection(), "file_executable_recent");
|
|
|
|
|
(void)new TDEAction(i18n("&Core dump..."), 0, this, TQ_SLOT(slotFileCore()),
|
|
|
|
|
actionCollection(), "file_core_dump");
|
|
|
|
|
KStdAction::quit(kapp, TQ_SLOT(closeAllWindows()), actionCollection());
|
|
|
|
|
KStdAction::quit(tdeApp, TQ_SLOT(closeAllWindows()), actionCollection());
|
|
|
|
|
|
|
|
|
|
// settings menu
|
|
|
|
|
(void)new TDEAction(i18n("This &Program..."), 0, this,
|
|
|
|
@ -742,7 +742,7 @@ void DebuggerMainWnd::slotLocalsToWatch()
|
|
|
|
|
void DebuggerMainWnd::slotEditValue()
|
|
|
|
|
{
|
|
|
|
|
// does one of the value trees have the focus
|
|
|
|
|
TQWidget* f = kapp->focusWidget();
|
|
|
|
|
TQWidget* f = tdeApp->focusWidget();
|
|
|
|
|
ExprWnd* wnd;
|
|
|
|
|
if (f == m_localVariables) {
|
|
|
|
|
wnd = m_localVariables;
|
|
|
|
|