changeset 16340:045ce3896e3f

Stop compilation warning about signal function declared virtual. * libgui/src/octave-dock-widget.h(active_changed): Remove virtual keyword from signal declaration as it is not allowed.
author Rik <rik@octave.org>
date Wed, 20 Mar 2013 08:59:04 -0700
parents 0c340bf413d7
children c34f8bb1ebec
files libgui/src/octave-dock-widget.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/octave-dock-widget.h	Tue Mar 19 20:51:27 2013 -0400
+++ b/libgui/src/octave-dock-widget.h	Wed Mar 20 08:59:04 2013 -0700
@@ -48,7 +48,7 @@
   /** Custom signal that tells if a user has clicked away
    *  that dock widget, i.e the active dock widget has
    *  changed. */
-  virtual void active_changed (bool active);
+  void active_changed (bool active);
 
 protected:
   virtual void closeEvent (QCloseEvent *e)