diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2007-12-29 21:38:53 (GMT) |
commit | e1f362ae764884a4cd1e1673292cb37d5a85f89c (patch) | |
tree | 137430b26aee6f3638f27281d3757c2c75ef4b20 /src/FbTk/I18n.hh | |
parent | e90c3678d9e54bc9251619fdee2d7341f042167b (diff) | |
download | fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.zip fluxbox_pavel-e1f362ae764884a4cd1e1673292cb37d5a85f89c.tar.bz2 |
'inline' in class declaration is implicitly inline
Diffstat (limited to 'src/FbTk/I18n.hh')
-rw-r--r-- | src/FbTk/I18n.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/FbTk/I18n.hh b/src/FbTk/I18n.hh index 298c64c..a8c6021 100644 --- a/src/FbTk/I18n.hh +++ b/src/FbTk/I18n.hh | |||
@@ -24,8 +24,8 @@ | |||
24 | 24 | ||
25 | // $Id$ | 25 | // $Id$ |
26 | 26 | ||
27 | #ifndef I18N_HH | 27 | #ifndef I18N_HH |
28 | #define I18N_HH | 28 | #define I18N_HH |
29 | 29 | ||
30 | // TODO: FIXME | 30 | // TODO: FIXME |
31 | #include "../../nls/fluxbox-nls.hh" | 31 | #include "../../nls/fluxbox-nls.hh" |
@@ -105,9 +105,9 @@ namespace FbTk { | |||
105 | class I18n { | 105 | class I18n { |
106 | public: | 106 | public: |
107 | static I18n *instance(); | 107 | static I18n *instance(); |
108 | inline const char *getLocale() const { return m_locale.c_str(); } | 108 | const char *getLocale() const { return m_locale.c_str(); } |
109 | inline bool multibyte() const { return m_multibyte; } | 109 | bool multibyte() const { return m_multibyte; } |
110 | inline const nl_catd &getCatalogFd() const { return m_catalog_fd; } | 110 | const nl_catd &getCatalogFd() const { return m_catalog_fd; } |
111 | 111 | ||
112 | FbString getMessage(int set_number, int message_number, | 112 | FbString getMessage(int set_number, int message_number, |
113 | const char *default_messsage = 0, bool translate_fb = false) const; | 113 | const char *default_messsage = 0, bool translate_fb = false) const; |