diff libgui/src/main-window.cc @ 16443:7a2ee6ea7800

rename dbstop -> breakpoint in GUI interface functions * file-editor-interface.h (file_editor_interface::handle_update_breakpoint_marker_request): Rename from file_editor_interface::handle_update_dbstop_marker_request. * file-editor-tab.h, file-editor-tab.cc (file_editor_tab::do_breakpoint_marker): Rename from file_editor_tab::do_dbstop_marker. Change all uses. * file-editor.h, file-editor.cc (file_editor::handle_update_breakpoint_marker_request): Rename from file_editor::handle_update_dbstop_marker_request. Change all uses. diff --git a/libgui/src/octave-qt-link.cc b/libgui/src/octave-qt-link.cc * octave-qt-link.h (octave_qt_link::update_breakpoint_marker_signal): Rename from octave_qt_link::update_dbstop_marker_signal. Change all uses.
author John W. Eaton <jwe@octave.org>
date Sat, 06 Apr 2013 13:06:40 -0400
parents a971d8bdaadc
children 3f8d3fc907af
line wrap: on
line diff
--- a/libgui/src/main-window.cc	Sat Apr 06 11:51:23 2013 -0400
+++ b/libgui/src/main-window.cc	Sat Apr 06 13:06:40 2013 -0400
@@ -1178,9 +1178,9 @@
            this, SLOT (handle_exit_debugger ()));
 
   connect (_octave_qt_link,
-           SIGNAL (update_dbstop_marker_signal (bool, const QString&, int)),
+           SIGNAL (update_breakpoint_marker_signal (bool, const QString&, int)),
            _file_editor,
-           SLOT (handle_update_dbstop_marker_request (bool, const QString&, int)));
+           SLOT (handle_update_breakpoint_marker_request (bool, const QString&, int)));
 
   connect (_octave_qt_link,
            SIGNAL (edit_file_signal (const QString&)),