summaryrefslogtreecommitdiff
path: root/otk/label.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-16 13:28:26 +0000
committerDana Jansens <danakj@orodu.net>2002-11-16 13:28:26 +0000
commit77342413efd183bd1c0681a57b68acc836022923 (patch)
treec60d7f5512a415259f516d4161846f27170e73dd /otk/label.hh
parentd4d15160fe81353a9f7958c1feb1821abe179a70 (diff)
change how the widgets' _dirty flag works so that all inheritence levels of the widget class can use it
Diffstat (limited to 'otk/label.hh')
-rw-r--r--otk/label.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/otk/label.hh b/otk/label.hh
index 3bf397a6..7cfa23bf 100644
--- a/otk/label.hh
+++ b/otk/label.hh
@@ -16,13 +16,10 @@ public:
void setText(const std::string &text) { _text = text; _dirty = true; }
void update(void);
- int exposeHandler(const XExposeEvent &e);
- int configureHandler(const XConfigureEvent &e);
private:
std::string _text;
- bool _dirty;
};
}