diff gui/src/m-editor/file-editor-tab.h @ 14827:6b90737f69cc gui

Very basic breakpoint setting and removing in the editor works. * file-editor-tab: Instead of toggling breakpoints directly, now sends events. * octave-event: Created new events to add and remove breakpoints.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 02 Jul 2012 12:35:08 +0200
parents eae0e9f2a8c6
children e97be88fc478
line wrap: on
line diff
--- a/gui/src/m-editor/file-editor-tab.h
+++ b/gui/src/m-editor/file-editor-tab.h
@@ -79,6 +79,9 @@
   void set_file_name (QString fileName);
 
 private:
+  void request_add_breakpoint (int line);
+  void request_remove_breakpoint (int line);
+
   void update_tracked_file ();
   int check_file_modified (QString msg, int cancelButton);
   void do_comment_selected_text (bool comment);