From: Abdelrazak Younes Date: Mon, 5 Oct 2009 21:39:23 +0000 (+0000) Subject: Make WorkArea a pure virtual interface. X-Git-Tag: 2.0.0~5410 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=8661b320ce860db07808ca766c9005b7e5c05de5;p=features.git Make WorkArea a pure virtual interface. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31534 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/WorkArea.h b/src/frontends/WorkArea.h index 4d9ec2fca4..dd9f1083fd 100644 --- a/src/frontends/WorkArea.h +++ b/src/frontends/WorkArea.h @@ -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