]> git.lyx.org Git - features.git/commitdiff
Make WorkArea a pure virtual interface.
authorAbdelrazak Younes <younes@lyx.org>
Mon, 5 Oct 2009 21:39:23 +0000 (21:39 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 5 Oct 2009 21:39:23 +0000 (21:39 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31534 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/WorkArea.h

index 4d9ec2fca435540f299f7999632e009d399e03e3..dd9f1083fdb28e9fabf8d451c2d824bd42ff11d6 100644 (file)
@@ -34,8 +34,6 @@ namespace frontend {
 class WorkArea
 {
 public:
-       ///
-       WorkArea() : lyx_view_(0) {}
        ///
        virtual ~WorkArea() {}
 
@@ -50,10 +48,6 @@ public:
 
        /// Update window titles of all users.
        virtual void updateWindowTitle() = 0;
-
-private:
-
-       LyXView * lyx_view_;
 };
 
 } // namespace frontend