summaryrefslogtreecommitdiff
path: root/otk/label.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-11 19:17:13 +0000
committerDana Jansens <danakj@orodu.net>2003-01-11 19:17:13 +0000
commit8f8acc24933830d4f5784616b9b0c5896bde0b93 (patch)
treee34d995f6ef854e3ac2b365326ffabf3dad265da /otk/label.hh
parent684405eec8553918b62e334bffe29eb4712ec95c (diff)
rm prefixes for all elements in the otk namepsace
Diffstat (limited to 'otk/label.hh')
-rw-r--r--otk/label.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/otk/label.hh b/otk/label.hh
index f80f76c7..0366c262 100644
--- a/otk/label.hh
+++ b/otk/label.hh
@@ -1,3 +1,4 @@
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __label_hh
#define __label_hh
@@ -6,12 +7,12 @@
namespace otk {
-class OtkLabel : public OtkWidget {
+class Label : public Widget {
public:
- OtkLabel(OtkWidget *parent);
- ~OtkLabel();
+ Label(Widget *parent);
+ ~Label();
inline const std::string &getText(void) const { return _text; }
void setText(const std::string &text) { _text = text; _dirty = true; }