summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-10-05 04:03:56 -0700
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>2012-10-22 03:55:52 -0700
commit00d7e7ddfbc0e756e29e9a182e8f61796d604b06 (patch)
treec21b01d4a8b4e873cde879b14da22cca1030c4e0
parentbc5aaf1bc41ce117b50c2cec913adcbc4e8caa2f (diff)
downloadlayer_management-00d7e7ddfbc0e756e29e9a182e8f61796d604b06.tar.gz
WindowSystems: fixed issues caused by new compiler warning settings
-rw-r--r--LayerManagerPlugins/Renderers/Graphic/include/WindowSystems/X11WindowSystem.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/LayerManagerPlugins/Renderers/Graphic/include/WindowSystems/X11WindowSystem.h b/LayerManagerPlugins/Renderers/Graphic/include/WindowSystems/X11WindowSystem.h
index fb52963..3e5c474 100644
--- a/LayerManagerPlugins/Renderers/Graphic/include/WindowSystems/X11WindowSystem.h
+++ b/LayerManagerPlugins/Renderers/Graphic/include/WindowSystems/X11WindowSystem.h
@@ -137,12 +137,13 @@ private:
inline void X11WindowSystem::setSystemState (X11WindowSystemStates state)
{
- m_systemState = state;
-};
+ m_systemState = state;
+}
+
inline X11WindowSystemStates X11WindowSystem::getSystemState ()
{
return m_systemState;
-};
+}
inline Display* X11WindowSystem::getNativeDisplayHandle()
{