]> git.tdb.fi Git - libs/gui.git/blobdiff - source/gbase/simplewindow.cpp
Various fixes to Window resizing and fullscreen handling on X11
[libs/gui.git] / source / gbase / simplewindow.cpp
index aa34c04cfa046eec2bceb92df1e1070a9f8ae6b1..406090d760319fe03d280a983ffc7d79250654ad 100644 (file)
@@ -10,13 +10,13 @@ Distributed under the LGPL
 namespace Msp {
 namespace Graphics {
 
-SimpleWindow::SimpleWindow(unsigned w, unsigned h):
-       Window(dpy, w, h)
+SimpleWindow::SimpleWindow(unsigned w, unsigned h, bool fs):
+       Window(dpy, w, h, fs)
 { }
 
 
-SimpleGLWindow::SimpleGLWindow(unsigned w, unsigned h):
-       SimpleWindow(w, h),
+SimpleGLWindow::SimpleGLWindow(unsigned w, unsigned h, bool fs):
+       SimpleWindow(w, h, fs),
        gl_ctx(*this)
 { }