diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-26 02:18:34 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-26 17:22:58 +0900 |
commit | fb9112c9ff4ae8380007e190ce68c8313ef46042 (patch) | |
tree | 6d7baa674f60f0607f245e5d524a9b56108b734b /src/libgui/gui_debug_manager.cpp | |
parent | 85562b094d2dbde5cc8896527c85290532f06c88 (diff) | |
download | piklab-fb9112c9ff4ae8380007e190ce68c8313ef46042.tar.gz piklab-fb9112c9ff4ae8380007e190ce68c8313ef46042.zip |
Replaced various '#define' with actual strings - part 4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 753b5724e1fdbfb87852395722717a9c1643baa3)
Diffstat (limited to 'src/libgui/gui_debug_manager.cpp')
-rw-r--r-- | src/libgui/gui_debug_manager.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libgui/gui_debug_manager.cpp b/src/libgui/gui_debug_manager.cpp index 365d37e..4b607ab 100644 --- a/src/libgui/gui_debug_manager.cpp +++ b/src/libgui/gui_debug_manager.cpp @@ -93,7 +93,7 @@ Breakpoint::Data Debugger::GuiManager::currentBreakpointData() { const Breakpoint::Data *data = Main::breakpointsView().currentData(); if (data) return *data; - TextEditor *editor = ::tqqt_cast<TextEditor *>(Main::currentEditor()); + TextEditor *editor = ::tqt_cast<TextEditor *>(Main::currentEditor()); Q_ASSERT(editor); return Breakpoint::Data(editor->url(), editor->cursorLine()); } @@ -183,7 +183,7 @@ void Debugger::GuiManager::updateView(bool gotoPC) bool currentHasPC = false; TQValueList<Editor *>::iterator ite; for (ite=_editors.begin(); ite!=_editors.end(); ++ite) { - TextEditor *e = ::tqqt_cast<TextEditor *>(*ite); + TextEditor *e = ::tqt_cast<TextEditor *>(*ite); if ( e==0 ) continue; updateEditorMarks(*e); if ( !_currentSourceLines.contains(e->url()) ) continue; @@ -202,9 +202,9 @@ void Debugger::GuiManager::updateView(bool gotoPC) case 1: if ( !Main::projectManager().contains(it.key()) ) continue; break; case 2: if ( !it.key().exists() ) continue; break; } - TextEditor *e = ::tqqt_cast<TextEditor *>(Main::editorManager().findEditor(it.key())); + TextEditor *e = ::tqt_cast<TextEditor *>(Main::editorManager().findEditor(it.key())); if ( e==0 ) { - if (gotoPC) e = ::tqqt_cast<TextEditor *>(Main::editorManager().openEditor(it.key())); + if (gotoPC) e = ::tqt_cast<TextEditor *>(Main::editorManager().openEditor(it.key())); if ( e==0 ) continue; } updateEditorMarks(*e); @@ -221,7 +221,7 @@ Register::MainView *Debugger::GuiManager::registerView() const { TQValueList<Editor *>::const_iterator it = _editors.begin(); for (; it!=_editors.end(); ++it) { - Register::MainView *rv = ::tqqt_cast<Register::MainView *>(*it); + Register::MainView *rv = ::tqt_cast<Register::MainView *>(*it); if (rv) return rv; } return 0; @@ -234,7 +234,7 @@ bool Debugger::GuiManager::isProjectSource(const PURL::Url &url) const void Debugger::GuiManager::showDisassemblyLocation() { - TextEditor *editor = ::tqqt_cast<TextEditor *>(Main::currentEditor()); + TextEditor *editor = ::tqt_cast<TextEditor *>(Main::currentEditor()); Q_ASSERT(editor); Q_ASSERT(_coff); TQValueVector<Address> addresses = _coff->addresses(editor->url(), editor->cursorLine()); @@ -244,6 +244,6 @@ void Debugger::GuiManager::showDisassemblyLocation() } int line = _coff->lineForAddress(_coff->url(), addresses[0]); if ( line==-1 ) return; // possible ? - TextEditor *e = ::tqqt_cast<TextEditor *>(Main::editorManager().openEditor(_coff->url())); + TextEditor *e = ::tqt_cast<TextEditor *>(Main::editorManager().openEditor(_coff->url())); if (e) e->setCursor(line, 0); } |