aboutsummaryrefslogtreecommitdiff
path: root/src/Focusable.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/Focusable.hh
parente90c3678d9e54bc9251619fdee2d7341f042167b (diff)
downloadfluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip
fluxbox-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/Focusable.hh')
-rw-r--r--src/Focusable.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Focusable.hh b/src/Focusable.hh
index 5a2f40c..e38c350 100644
--- a/src/Focusable.hh
+++ b/src/Focusable.hh
@@ -69,27 +69,27 @@ public:
69 virtual bool acceptsFocus() const { return true; } 69 virtual bool acceptsFocus() const { return true; }
70 70
71 /// @return true if icon button should appear focused 71 /// @return true if icon button should appear focused
72 inline bool getAttentionState() const { return m_attention_state; } 72 bool getAttentionState() const { return m_attention_state; }
73 /// @set the attention state 73 /// @set the attention state
74 virtual void setAttentionState(bool value) { 74 virtual void setAttentionState(bool value) {
75 m_attention_state = value; attentionSig().notify(); 75 m_attention_state = value; attentionSig().notify();
76 } 76 }
77 77
78 /// @return the screen in which this object resides 78 /// @return the screen in which this object resides
79 inline BScreen &screen() { return m_screen; } 79 BScreen &screen() { return m_screen; }
80 /// @return the screen in which this object resides 80 /// @return the screen in which this object resides
81 inline const BScreen &screen() const { return m_screen; } 81 const BScreen &screen() const { return m_screen; }
82 82
83 /** 83 /**
84 * For accessing window properties, like shaded, minimized, etc. 84 * For accessing window properties, like shaded, minimized, etc.
85 * @return window context 85 * @return window context
86 */ 86 */
87 inline const FluxboxWindow *fbwindow() const { return m_fbwin; } 87 const FluxboxWindow *fbwindow() const { return m_fbwin; }
88 /** 88 /**
89 * For accessing window properties, like shaded, minimized, etc. 89 * For accessing window properties, like shaded, minimized, etc.
90 * @return window context 90 * @return window context
91 */ 91 */
92 inline FluxboxWindow *fbwindow() { return m_fbwin; } 92 FluxboxWindow *fbwindow() { return m_fbwin; }
93 93
94 /// @return WM_CLASS class string (for pattern matching) 94 /// @return WM_CLASS class string (for pattern matching)
95 virtual const std::string &getWMClassClass() const { return m_class_name; } 95 virtual const std::string &getWMClassClass() const { return m_class_name; }