]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/DockView.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / DockView.h
index 5b2cdd7a96fa44185a95fc74b70a4f7a827ba7e6..bb456d9b5deea53ebf93641146ea0c936db7a5bd 100644 (file)
@@ -38,9 +38,11 @@ public:
        )
                : QDockWidget(&parent, flags), Dialog(parent, name, title)
        {
+               setObjectName(name);
                if (flags & Qt::Drawer)
                        setFeatures(QDockWidget::NoDockWidgetFeatures);
                parent.addDockWidget(area, this);
+               hide();
        }
 
        virtual ~DockView() {}
@@ -48,6 +50,9 @@ public:
        virtual QWidget * asQWidget() { return this; }
        virtual QWidget const * asQWidget() const { return this; }
 
+       /// We don't want to restore geometry session for dock widgets.
+       void restoreSession() {}
+
        /// Dialog inherited methods
        //@{
        void applyView() {}