X-Git-Url: http://git.tdb.fi/?p=libs%2Fgui.git;a=blobdiff_plain;f=source%2Fgraphics%2Fwindow.h;fp=source%2Fgraphics%2Fwindow.h;h=de8a3d0beaccf79c2bc7bf9e42c3535840636fbf;hp=09ab25b1b42e3d9bebb86e659bbe62228a0b74f2;hb=507fa60f32bd3f64840a2cdd1be5d68478432b55;hpb=cea95778acfd6e172639cafd7ad249cc13ceb2a6 diff --git a/source/graphics/window.h b/source/graphics/window.h index 09ab25b..de8a3d0 100644 --- a/source/graphics/window.h +++ b/source/graphics/window.h @@ -18,7 +18,7 @@ struct WindowOptions unsigned width = 640; unsigned height = 480; bool fullscreen = false; - const Monitor *fullscreen_monitor = 0; + const Monitor *fullscreen_monitor = nullptr; bool fullscreen_exclusive = true; bool resizable = false; }; @@ -50,7 +50,7 @@ protected: bool touch_input = false; bool resizing = false; bool moving = false; - Private *priv = 0; + Private *priv = nullptr; public: Window(Display &, unsigned w, unsigned h, bool fs = false);