summaryrefslogtreecommitdiff
path: root/src/gui/textdialog.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-02-28 13:02:26 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-02-28 17:06:52 +0100
commit64e742acdb9b0dd9c44bced91766f5ea1aa9de4c (patch)
tree37777b1b197907e7d0748e4ea01bbd7380810b48 /src/gui/textdialog.h
parentc44ee963f756cdac87e9ab739fc7e43aab70ad2d (diff)
downloadmana-client-64e742acdb9b0dd9c44bced91766f5ea1aa9de4c.tar.gz
mana-client-64e742acdb9b0dd9c44bced91766f5ea1aa9de4c.tar.bz2
mana-client-64e742acdb9b0dd9c44bced91766f5ea1aa9de4c.tar.xz
mana-client-64e742acdb9b0dd9c44bced91766f5ea1aa9de4c.zip
Removed a few pointless const qualifiers
Reviewed-by: Jared Adams
Diffstat (limited to 'src/gui/textdialog.h')
-rw-r--r--src/gui/textdialog.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/textdialog.h b/src/gui/textdialog.h
index 6db09e71..825d9ddc 100644
--- a/src/gui/textdialog.h
+++ b/src/gui/textdialog.h
@@ -43,8 +43,7 @@ public:
*/
TextDialog(const std::string &title, const std::string &msg,
Window *parent = NULL);
-
-
+
~TextDialog();
/**
@@ -61,8 +60,8 @@ public:
* Set the OK button action id
*/
void setOKButtonActionId(const std::string &name);
-
- static const bool isActive() { return instances > 0; }
+
+ static bool isActive() { return instances > 0; }
private:
static int instances;