diff options
author | rathnor <rathnor> | 2003-04-20 15:11:48 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-04-20 15:11:48 (GMT) |
commit | bd9a39fde6cc3b43fd2cf1566ffc618359259441 (patch) | |
tree | 0dc94fb744c95711d4999f2535edb9006adf0415 /src/Window.hh | |
parent | 54cf041b83150947d62540af2e1f2d60c6a52872 (diff) | |
download | fluxbox-bd9a39fde6cc3b43fd2cf1566ffc618359259441.zip fluxbox-bd9a39fde6cc3b43fd2cf1566ffc618359259441.tar.bz2 |
fix couple of functions that shouldn't have been marked as inline
(is/hasTransient) (Simon)
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh index 31be752..4a8065e 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.59 2003/04/20 02:47:15 rathnor Exp $ | 25 | // $Id: Window.hh,v 1.60 2003/04/20 15:11:48 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -214,8 +214,8 @@ public: | |||
214 | @name accessors | 214 | @name accessors |
215 | */ | 215 | */ |
216 | //@{ | 216 | //@{ |
217 | inline bool isTransient() const; | 217 | bool isTransient() const; |
218 | inline bool hasTransient() const; | 218 | bool hasTransient() const; |
219 | inline bool isManaged() const { return m_managed; } | 219 | inline bool isManaged() const { return m_managed; } |
220 | inline bool isFocused() const { return focused; } | 220 | inline bool isFocused() const { return focused; } |
221 | inline bool isVisible() const { return visible; } | 221 | inline bool isVisible() const { return visible; } |