]> git.lyx.org Git - lyx.git/blobdiff - src/WorkArea.C
Applied Angus patch to compile on DEC C++ and to avoid name clashes
[lyx.git] / src / WorkArea.C
index e9343adf08cc00519622c1b5bfa32ac55c4c290a..33be3fd150aa0d667c1025a6721a849cab62aa18 100644 (file)
@@ -18,9 +18,6 @@
 #include "WorkArea.h"
 #include "debug.h"
 #include "support/lstrings.h"
-#if 0
-#include "BufferView.h"
-#endif
 #include "LyXView.h"
 #include "lyxfunc.h"
 
@@ -36,12 +33,16 @@ FL_OBJECT * figinset_canvas;
 // This is at least true for g++.
 //using std::abs;
 
-static inline
+namespace {
+
+inline
 void waitForX()
 {
        XSync(fl_get_display(), 0);
 }
 
+} // anon namespace
+
 
 extern "C" {
 // Just a bunch of C wrappers around static members of WorkArea
@@ -60,17 +61,8 @@ extern "C" {
 }
 
 
-
-WorkArea::WorkArea(
-#if 0
-       BufferView * o,
-#endif
-       int xpos, int ypos, int width, int height)
-       :
-#if 0
-       owner_(o),
-#endif
-       workareapixmap(0), painter_(*this)
+WorkArea::WorkArea(int xpos, int ypos, int width, int height)
+       : workareapixmap(0), painter_(*this)
 {
        fl_freeze_all_forms();
 
@@ -271,11 +263,7 @@ void WorkArea::scroll_cb(FL_OBJECT * ob, long)
        // If we really want the accellerating scroll we can do that
        // from here. IMHO that is a waste of effort since we already
        // have other ways to move fast around in the document. (Lgb)
-#if 0
-       area->owner_->scrollCB(fl_get_scrollbar_value(ob));
-#else
        area->scrollCB(fl_get_scrollbar_value(ob));
-#endif
        waitForX();
 }
 
@@ -493,11 +481,12 @@ int WorkArea::work_area_handler(FL_OBJECT * ob, int event,
 }
 
 
-static string clipboard_selection;
-static bool clipboard_read = false;
+namespace {
 
-extern "C" {
-       static
+string clipboard_selection;
+bool clipboard_read = false;
+
+extern "C"
 int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
                        void const * data, long size) 
 {
@@ -510,8 +499,8 @@ int request_clipboard_cb(FL_OBJECT * /*ob*/, long /*type*/,
        clipboard_read = true;
        return 0;
 }
-} // extern "C"
 
+} // namespace anon
 
 string const WorkArea::getClipboard() const 
 {