changeset 27796:eb64fd6209c2

fix find next/previous buttons of find dialog (bug #57238) * find-dialog.h: find_next and find_previous are slots
author Torsten Lilge <ttl-octave@mailbox.org>
date Mon, 09 Dec 2019 22:40:32 +0100
parents 0157c4d4792e
children d68ae60f1557
files libgui/src/m-editor/find-dialog.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/m-editor/find-dialog.h	Sun Dec 08 17:52:18 2019 +0100
+++ b/libgui/src/m-editor/find-dialog.h	Mon Dec 09 22:40:32 2019 +0100
@@ -87,9 +87,6 @@
 
     find_dialog (base_qobject& oct_qobj, octave_dock_widget *ed, QWidget *p);
 
-    void find_next (void);
-    void find_prev (void);
-
     //! Set dialog visible or not and storing the new visibility state
     void set_visible (bool visible);
 
@@ -103,6 +100,9 @@
 
   public slots:
 
+    void find_next (void);
+    void find_prev (void);
+
     //! Slot for updating the edit area when the active tab has changed
     void update_edit_area (octave_qscintilla*);