diff options
Diffstat (limited to 'dw/fltkviewbase.hh')
-rw-r--r-- | dw/fltkviewbase.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dw/fltkviewbase.hh b/dw/fltkviewbase.hh index f554a74d..ccdc86ef 100644 --- a/dw/fltkviewbase.hh +++ b/dw/fltkviewbase.hh @@ -20,12 +20,13 @@ private: int bgColor; core::Region drawRegion; - ::fltk::Rectangle *exposeArea; + //::fltk::Rectangle *exposeArea; static Fl_Image *backBuffer; static bool backBufferInUse; void draw (const core::Rectangle *rect, DrawType type); void drawChildWidgets (); +#if 0 inline void clipPoint (int *x, int *y, int border) { if (exposeArea) { if (*x < exposeArea->x () - border) @@ -38,7 +39,7 @@ private: *y = exposeArea->b () + border; } } - +#endif protected: core::Layout *theLayout; int canvasWidth, canvasHeight; |