diff options
author | fluxgen <fluxgen> | 2002-10-16 23:30:17 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-16 23:30:17 (GMT) |
commit | d9483d04fbcc7da8ca17f65ae87a138433b27ad9 (patch) | |
tree | 81b5fc8300f2acbf49ed79d983105fac037a0174 | |
parent | c613bf584b199a7e4373096791ccadf0675f32aa (diff) | |
download | fluxbox-d9483d04fbcc7da8ca17f65ae87a138433b27ad9.zip fluxbox-d9483d04fbcc7da8ca17f65ae87a138433b27ad9.tar.bz2 |
const fix
-rw-r--r-- | src/XmbFontImp.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/XmbFontImp.hh b/src/XmbFontImp.hh index 86854e1..64a176f 100644 --- a/src/XmbFontImp.hh +++ b/src/XmbFontImp.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: XmbFontImp.hh,v 1.2 2002/10/15 16:44:25 fluxgen Exp $ | 22 | // $Id: XmbFontImp.hh,v 1.3 2002/10/16 23:30:17 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef XMBFONTIMP_HH | 24 | #ifndef XMBFONTIMP_HH |
25 | #define XMBFONTIMP_HH | 25 | #define XMBFONTIMP_HH |
@@ -32,7 +32,7 @@ public: | |||
32 | ~XmbFontImp(); | 32 | ~XmbFontImp(); |
33 | bool load(const std::string &name); | 33 | bool load(const std::string &name); |
34 | virtual void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; | 34 | virtual void drawText(Drawable w, int screen, GC gc, const char *text, size_t len, int x, int y) const; |
35 | unsigned int textWidth(const char *text, unsigned int len) const; | 35 | unsigned int textWidth(const char * const text, unsigned int len) const; |
36 | unsigned int height() const; | 36 | unsigned int height() const; |
37 | bool loaded() const { return m_fontset != 0; } | 37 | bool loaded() const { return m_fontset != 0; } |
38 | private: | 38 | private: |