Author: trilec
Date: 2007-06-10 13:03:52 -0400 (Sun, 10 Jun 2007)
New Revision: 5897
Log:
upBox - nmissing amespace fix

Modified:
   widget_has_children/src/UpBox.cxx

Modified: widget_has_children/src/UpBox.cxx
===================================================================
--- widget_has_children/src/UpBox.cxx   2007-06-08 18:19:39 UTC (rev 5896)
+++ widget_has_children/src/UpBox.cxx   2007-06-10 17:03:52 UTC (rev 5897)
@@ -40,7 +40,7 @@
 
 // Maybe this should be a public fltk method?
 void drawFocusRect(const fltk::Rectangle& r1) {
-  Rectangle r; transform(r1,r);
+  fltk::Rectangle r; transform(r1,r);
 #if USE_X11
   // X version uses stipple pattern because there seem to be too many
   // servers with bugs when drawing dotted lines:
@@ -139,7 +139,7 @@
   The default version draws a dotted line around the edge, using
   a system-specific XOR mode, if the FOCUSED flag is on in drawflags().
 */
-void Symbol::drawOverlay(const Rectangle& r1) const {
+void Symbol::drawOverlay(const fltk::Rectangle& r1) const {
   if (!drawflags(FOCUSED)) return;
   fltk::Rectangle r(r1);
   inset(r);

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to