summaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authormarkt <markt>2006-08-06 22:33:54 (GMT)
committermarkt <markt>2006-08-06 22:33:54 (GMT)
commit2d14b33ef4de3e8cd95474bc103fe3dba5cbb33b (patch)
tree58569f71d21584a1bf82e509ba9bf1e5123263c2 /src/Screen.hh
parent7b49c4a00bc8d0b9685868e5ad4699b8c5530ab9 (diff)
downloadfluxbox_lack-2d14b33ef4de3e8cd95474bc103fe3dba5cbb33b.zip
fluxbox_lack-2d14b33ef4de3e8cd95474bc103fe3dba5cbb33b.tar.bz2
distinguish between startup and restart
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index b0eb9dd..1778308 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -247,6 +247,7 @@ public:
247 const std::string &name() const { return m_name; } 247 const std::string &name() const { return m_name; }
248 const std::string &altName() const { return m_altname; } 248 const std::string &altName() const { return m_altname; }
249 bool isShuttingdown() const { return m_shutdown; } 249 bool isShuttingdown() const { return m_shutdown; }
250 bool isRestart();
250 251
251 PlacementStrategy &placementStrategy() { return *m_placement_strategy; } 252 PlacementStrategy &placementStrategy() { return *m_placement_strategy; }
252 const PlacementStrategy &placementStrategy() const { return *m_placement_strategy; } 253 const PlacementStrategy &placementStrategy() const { return *m_placement_strategy; }
@@ -485,7 +486,7 @@ private:
485 int x, y, width, height; 486 int x, y, width, height;
486 } *m_xinerama_headinfo; 487 } *m_xinerama_headinfo;
487 488
488 bool m_shutdown; 489 bool m_restart, m_shutdown;
489}; 490};
490 491
491 492