aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-10-25 21:11:42 (GMT)
committerfluxgen <fluxgen>2002-10-25 21:11:42 (GMT)
commit76f20728b953cb82d0de843d3eba672926a9071a (patch)
treee331d7dffa361cf92808148707db29b5b72ad6af
parent016b6891ea1b6140e40696264f9f299fc3092048 (diff)
downloadfluxbox-76f20728b953cb82d0de843d3eba672926a9071a.zip
fluxbox-76f20728b953cb82d0de843d3eba672926a9071a.tar.bz2
const fixes
-rw-r--r--src/Netizen.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Netizen.hh b/src/Netizen.hh
index 948d0d2..f58735a 100644
--- a/src/Netizen.hh
+++ b/src/Netizen.hh
@@ -30,7 +30,7 @@ class BScreen;
30 30
31class Netizen { 31class Netizen {
32public: 32public:
33 Netizen(BScreen *scr, Window w); 33 Netizen(const BScreen * const scr, Window w);
34 34
35 inline Window getWindowID() const { return window; } 35 inline Window getWindowID() const { return window; }
36 36
@@ -45,7 +45,7 @@ public:
45 45
46 void sendConfigNotify(XEvent *xe); 46 void sendConfigNotify(XEvent *xe);
47private: 47private:
48 BScreen *screen; 48 const BScreen * const m_screen;
49 Display *m_display; ///< display connection 49 Display *m_display; ///< display connection
50 Window window; 50 Window window;
51 XEvent event; 51 XEvent event;