aboutsummaryrefslogtreecommitdiff
path: root/src/FbAtoms.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2007-12-29 21:38:53 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2007-12-29 21:38:53 (GMT)
commite1f362ae764884a4cd1e1673292cb37d5a85f89c (patch)
tree137430b26aee6f3638f27281d3757c2c75ef4b20 /src/FbAtoms.hh
parente90c3678d9e54bc9251619fdee2d7341f042167b (diff)
downloadfluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip
fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/FbAtoms.hh')
-rw-r--r--src/FbAtoms.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/FbAtoms.hh b/src/FbAtoms.hh
index 0f2e147..b657fe7 100644
--- a/src/FbAtoms.hh
+++ b/src/FbAtoms.hh
@@ -34,17 +34,17 @@ public:
34 34
35 static FbAtoms *instance(); 35 static FbAtoms *instance();
36 36
37 inline Atom getWMChangeStateAtom() const { return xa_wm_change_state; } 37 Atom getWMChangeStateAtom() const { return xa_wm_change_state; }
38 inline Atom getWMStateAtom() const { return xa_wm_state; } 38 Atom getWMStateAtom() const { return xa_wm_state; }
39 inline Atom getWMDeleteAtom() const { return xa_wm_delete_window; } 39 Atom getWMDeleteAtom() const { return xa_wm_delete_window; }
40 inline Atom getWMProtocolsAtom() const { return xa_wm_protocols; } 40 Atom getWMProtocolsAtom() const { return xa_wm_protocols; }
41 inline Atom getWMTakeFocusAtom() const { return xa_wm_take_focus; } 41 Atom getWMTakeFocusAtom() const { return xa_wm_take_focus; }
42 42
43 inline Atom getMWMHintsAtom() const { return motif_wm_hints; } 43 Atom getMWMHintsAtom() const { return motif_wm_hints; }
44 44
45 // these atoms are for normal app->WM interaction beyond the scope of the 45 // these atoms are for normal app->WM interaction beyond the scope of the
46 // ICCCM... 46 // ICCCM...
47 inline Atom getFluxboxAttributesAtom() const { return blackbox_attributes; } 47 Atom getFluxboxAttributesAtom() const { return blackbox_attributes; }
48 48
49private: 49private:
50 void initAtoms(); 50 void initAtoms();
@@ -54,7 +54,7 @@ private:
54 54
55 Atom xa_wm_protocols, xa_wm_state, 55 Atom xa_wm_protocols, xa_wm_state,
56 xa_wm_delete_window, xa_wm_take_focus, xa_wm_change_state; 56 xa_wm_delete_window, xa_wm_take_focus, xa_wm_change_state;
57 57
58 bool m_init; 58 bool m_init;
59 static FbAtoms *s_singleton; 59 static FbAtoms *s_singleton;
60}; 60};