summaryrefslogtreecommitdiff
path: root/otk/button.hh
diff options
context:
space:
mode:
Diffstat (limited to 'otk/button.hh')
-rw-r--r--otk/button.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/otk/button.hh b/otk/button.hh
index 53d08a86..09fc0d6b 100644
--- a/otk/button.hh
+++ b/otk/button.hh
@@ -12,9 +12,6 @@ public:
Button(Widget *parent);
virtual ~Button();
- virtual inline bool isDefault() const { return _default; }
- virtual void setDefault(bool d);
-
virtual inline bool isPressed() const { return _pressed; }
virtual void press(unsigned int mouse_button);
@@ -26,7 +23,6 @@ public:
virtual void styleChanged(const RenderStyle &style);
private:
- bool _default;
bool _pressed;
unsigned int _mouse_button;
};