Log:

LyXView::view_state_changed boost signal: deleted
LyXView::updateStatusBar(): new pure virtual method
GuiView::updateStatusBar(): renamed from update_view_state

Index: GuiView.C
===================================================================
--- GuiView.C   (revision 14346)
+++ GuiView.C   (working copy)
@@ -104,7 +104,6 @@
 
        statusBar()->setSizeGripEnabled(false);
 
-       view_state_changed.connect(boost::bind(&GuiView::update_view_state, 
this));
        QObject::connect(&statusbar_timer_, SIGNAL(timeout()), this, 
SLOT(update_view_state_qt()));
 
        // make sure the buttons are disabled if needed
@@ -162,7 +161,7 @@
 }
 
 
-void GuiView::update_view_state()
+void GuiView::updateStatusBar()
 {
        // let the user see the explicit message
        if (statusbar_timer_.isActive())
Index: GuiView.h
===================================================================
--- GuiView.h   (revision 14344)
+++ GuiView.h   (working copy)
@@ -66,6 +66,9 @@
        /// clear status message
        virtual void clearMessage();
 
+       /// update the status bar
+       virtual void updateStatusBar();
+
        /// add the command buffer
        void addCommandBuffer(QToolBar * toolbar);
 
@@ -99,9 +102,6 @@
        /// focus the command buffer widget
        void focus_command_widget();
 
-       /// update status bar
-       void update_view_state();
-
        /**
         * setWindowTitle - set title of window
         * @param t main window title

Reply via email to