diff libgui/src/octave-dock-widget.h @ 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 c3057d80cf91
children 094bd3627ead
line wrap: on
line diff
--- a/libgui/src/octave-dock-widget.h
+++ b/libgui/src/octave-dock-widget.h
@@ -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)