]> git.lyx.org Git - lyx.git/commitdiff
LyXView: make it a pure virtual interface.
authorAbdelrazak Younes <younes@lyx.org>
Wed, 23 Sep 2009 19:51:55 +0000 (19:51 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Wed, 23 Sep 2009 19:51:55 +0000 (19:51 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31458 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/LyXView.h

index ae84c0de14b45e15537175289d351289224a2f42..8793c78eb787d4f636dbfdc9b453886e99a7f7a4 100644 (file)
@@ -44,8 +44,6 @@ namespace frontend {
 class LyXView
 {
 public:
-       ///
-       LyXView() {}
        ///
        virtual ~LyXView() {}
 
@@ -86,11 +84,6 @@ public:
        /// even though the cursor moved. The update flags of \c cur might
        /// be changed.
        virtual void updateCompletion(Cursor & cur, bool start, bool keep) = 0;
-
-private:
-       /// noncopyable
-       LyXView(LyXView const &);
-       void operator=(LyXView const &);
 };
 
 } // namespace frontend