summaryrefslogtreecommitdiff
path: root/otk/focuslabel.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-13 04:46:50 +0000
committerDana Jansens <danakj@orodu.net>2003-01-13 04:46:50 +0000
commit5a90d2b671f01f29043ab82f909440de0abfa362 (patch)
tree9f784a0c35d5594409b92d28f08404cb4e55f386 /otk/focuslabel.hh
parent4947902d269213edee40f3f31f97721fa0dd3877 (diff)
otk using ustring for shit that draws. expended its inferface yet some more.
Diffstat (limited to 'otk/focuslabel.hh')
-rw-r--r--otk/focuslabel.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/otk/focuslabel.hh b/otk/focuslabel.hh
index 54a7f06f..ea9f9b66 100644
--- a/otk/focuslabel.hh
+++ b/otk/focuslabel.hh
@@ -14,8 +14,8 @@ public:
FocusLabel(Widget *parent);
~FocusLabel();
- inline const std::string &getText(void) const { return _text; }
- void setText(const std::string &text) { _text = text; _dirty = true; }
+ inline const ustring &getText(void) const { return _text; }
+ void setText(const ustring &text) { _text = text; _dirty = true; }
void update(void);
@@ -25,7 +25,7 @@ private:
//! Object used by Xft to render to the drawable
XftDraw *_xftdraw;
//! Text displayed in the label
- std::string _text;
+ ustring _text;
};
}