]> git.lyx.org Git - lyx.git/commitdiff
de-boostification
authorAndré Pönitz <poenitz@gmx.net>
Mon, 12 Nov 2007 22:35:43 +0000 (22:35 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Mon, 12 Nov 2007 22:35:43 +0000 (22:35 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21561 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/LyXView.h

index 433074a958c556330bade294159081bc094c6bba..58d461f5cceda5289cc4546a72229cec2f89416f 100644 (file)
@@ -17,8 +17,6 @@
 #include "frontends/Delegates.h"
 #include "support/docstring.h"
 
-#include <boost/noncopyable.hpp>
-
 #include <vector>
 
 namespace lyx {
@@ -51,8 +49,8 @@ class WorkArea;
  * Additionally we would like to support multiple views
  * in a single LyXView.
  */
-class LyXView : boost::noncopyable,
-       public GuiBufferViewDelegate, public GuiBufferDelegate
+class LyXView
+       public GuiBufferViewDelegate, public GuiBufferDelegate
 {
 public:
        ///
@@ -196,6 +194,10 @@ public:
        void disconnectBuffer();
 
 private:
+       /// noncopyable
+       LyXView(LyXView const &);
+       void operator=(LyXView const &);
+
        /// called on timeout
        void autoSave();