summaryrefslogtreecommitdiff
path: root/src/Fl_Window.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-03-12 22:24:20 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-03-12 22:24:20 +0000
commite6631a0f7fdc8d3383927bac49f521791cddcc9c (patch)
treeb753578787e06c5aa2acea4c215063cb34167093 /src/Fl_Window.cxx
parent4643f3e98c8bfabc262770bca5afc31a8b38c7f5 (diff)
Moved the Fl_Window::decorated_*() functions teh Window_Driver
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11356 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Window.cxx')
-rw-r--r--src/Fl_Window.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx
index c41960886..99c730938 100644
--- a/src/Fl_Window.cxx
+++ b/src/Fl_Window.cxx
@@ -428,6 +428,19 @@ void Fl_Window::wait_for_expose() {
pWindowDriver->wait_for_expose();
}
+
+int Fl_Window::decorated_w()
+{
+ return pWindowDriver->decorated_w();
+}
+
+
+int Fl_Window::decorated_h()
+{
+ return pWindowDriver->decorated_h();
+}
+
+
//
// End of "$Id$".
//