no more needed.

-- 
Those who desire to give up Freedom in order to gain Security, will not have,
nor do they deserve, either one.     (T. Jefferson or B. Franklin or both...)
? .BufferView.h.swp
? 1.diff
? fullredraw.diff
? insets/1.diff
Index: BufferView.C
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/BufferView.C,v
retrieving revision 1.175
diff -u -p -r1.175 BufferView.C
--- BufferView.C        4 Aug 2003 09:06:29 -0000       1.175
+++ BufferView.C        4 Aug 2003 14:28:50 -0000
@@ -238,14 +238,6 @@ void BufferView::stuffClipboard(string c
 }
 
 
-BufferView::UpdateCodes operator|(BufferView::UpdateCodes uc1,
-                                 BufferView::UpdateCodes uc2)
-{
-       return static_cast<BufferView::UpdateCodes>
-               (static_cast<int>(uc1) | static_cast<int>(uc2));
-}
-
-
 bool BufferView::dispatch(FuncRequest const & ev)
 {
        return pimpl_->dispatch(ev);
Index: BufferView.h
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/BufferView.h,v
retrieving revision 1.136
diff -u -p -r1.136 BufferView.h
--- BufferView.h        4 Aug 2003 09:06:29 -0000       1.136
+++ BufferView.h        4 Aug 2003 14:28:50 -0000
@@ -40,15 +40,6 @@ class ErrorList;
 class BufferView : boost::noncopyable {
 public:
        /**
-        * Codes to store necessary pending updates
-        * of the document rendering.
-        */
-       enum UpdateCodes {
-               UPDATE = 0, //< repaint
-               SELECT = 1 //< reset selection to current cursor pos
-       };
-
-       /**
         * Create a view with the given owner main window,
         * of the given dimensions.
         */
@@ -219,9 +210,5 @@ private:
 
        Pimpl * pimpl_;
 };
-
-
-BufferView::UpdateCodes operator|(BufferView::UpdateCodes uc1,
-                                 BufferView::UpdateCodes uc2);
 
 #endif // BUFFERVIEW_H

Reply via email to