summaryrefslogtreecommitdiff
path: root/otk/rendercontrol.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-18 02:38:29 +0000
committerDana Jansens <danakj@orodu.net>2003-01-18 02:38:29 +0000
commite6d6a1b6b59d53f9d149f034274b205844eacf1e (patch)
treefe9fcbc1f0b3ae0cd06b5ed84e4aefa7b97d3000 /otk/rendercontrol.hh
parent056c5b435d6f52d0ade3beece3e112c4c4cc5268 (diff)
change the render() interface
Diffstat (limited to 'otk/rendercontrol.hh')
-rw-r--r--otk/rendercontrol.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/otk/rendercontrol.hh b/otk/rendercontrol.hh
index e8dcca44..f48f7057 100644
--- a/otk/rendercontrol.hh
+++ b/otk/rendercontrol.hh
@@ -10,6 +10,7 @@ extern "C" {
namespace otk {
class ScreenInfo;
+class Widget;
class RenderControl {
protected:
@@ -67,7 +68,7 @@ public:
static RenderControl *getRenderControl(int screen);
- virtual void render(::Window w) = 0;
+ virtual void render(Widget *wi) = 0;
};
}