changeset 24704:368a02326172

* variable-edidtor.cc: Fix trivial error in previous change.
author John W. Eaton <jwe@octave.org>
date Wed, 07 Feb 2018 17:22:45 -0500
parents 28211444585e
children 8b346a19108e
files libgui/src/variable-editor.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/variable-editor.cc	Wed Feb 07 17:16:55 2018 -0500
+++ b/libgui/src/variable-editor.cc	Wed Feb 07 17:22:45 2018 -0500
@@ -122,8 +122,8 @@
 {
   tab_bar *bar = new tab_bar (this);
 
-  m_tab_widget->setTabsClosable (true);
-  m_tab_widget->setMovable (true);
+  setTabsClosable (true);
+  setMovable (true);
 
   connect (bar, SIGNAL (close_current_tab_signal (bool)),
            p->parent (), SLOT (request_close_tab (bool)));