]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/WorkAreaManager.h
Next camel
[lyx.git] / src / frontends / WorkAreaManager.h
index 00f7de53fe3eec9eb63678a395f617dcad161192..7d389c67034b82e5993887a9e139a06d9bf117ba 100644 (file)
@@ -28,27 +28,24 @@ class WorkArea;
 class WorkAreaManager
 {
 public:
+       ///
        WorkAreaManager() {}
-
        ///
        void add(WorkArea * wa);
-
        ///
        void remove(WorkArea * wa);
-
        ///
        void redrawAll();
-
        ///
        void closeAll();
-
        /// This function is called when the buffer readonly status change.
-       virtual void setReadOnly(bool);
-
+       void setReadOnly(bool);
        /// Update window titles of all users.
-       virtual void updateTitles();
+       void updateTitles();
 
 private:
+       typedef std::list<WorkArea *>::iterator iterator;
+       ///
        std::list<WorkArea *> work_areas_;
 };