make them const

This commit is contained in:
Dana Jansens 2003-02-16 16:37:02 +00:00
parent dfe7f46bb7
commit 5cd8680f74

View file

@ -23,8 +23,8 @@ public:
inline const ustring& label() const { return _label; }
inline const bool& isDefault() const { return _default; }
bool operator==(const DialogButton &o) { return _label == o._label; }
bool operator!=(const DialogButton &o) { return !(_label == o._label); }
bool operator==(const DialogButton &o) const { return _label == o._label; }
bool operator!=(const DialogButton &o) const { return!(_label == o._label); }
};
class MessageDialog : public Widget {