diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-07 13:24:42 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-08 20:53:02 +0900 |
commit | a082a2596013ce2dc791319f70d0371004a406a5 (patch) | |
tree | 6e102ce309d816a1e4e4dbfbc7cd2725e1cd5085 /src/textview.cpp | |
parent | f5d0ed0eeb91a5470868b0728e1d27b643410578 (diff) | |
download | ktechlab-a082a2596013ce2dc791319f70d0371004a406a5.tar.gz ktechlab-a082a2596013ce2dc791319f70d0371004a406a5.zip |
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 15796910975130bce11a662cbe259913d791942f)
Diffstat (limited to 'src/textview.cpp')
-rw-r--r-- | src/textview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textview.cpp b/src/textview.cpp index c06c3c3..19049c8 100644 --- a/src/textview.cpp +++ b/src/textview.cpp @@ -74,7 +74,7 @@ TextView::TextView( TextDocument * textDocument, ViewContainer *viewContainer, u #ifndef NO_GPSIM //BEGIN Debug Actions - new TDEAction( i18n("Set &Breakpoint"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(toggleBreakpoint()), ac, "debug_toggle_breakpoint" ); + new TDEAction( i18n("Set &Breakpoint"), 0, 0, this, TQT_SLOT(toggleBreakpoint()), ac, "debug_toggle_breakpoint" ); new TDEAction( i18n("Run"), "dbgrun", 0, textDocument, TQT_SLOT(debugRun()), ac, "debug_run" ); new TDEAction( i18n("Interrupt"), "media-playback-pause", 0, textDocument, TQT_SLOT(debugInterrupt()), ac, "debug_interrupt" ); new TDEAction( i18n("Stop"), "process-stop", 0, textDocument, TQT_SLOT(debugStop()), ac, "debug_stop" ); |