summaryrefslogtreecommitdiff
path: root/src/gui/popupmenu.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-07-07 22:52:35 +0300
committerAndrei Karas <akaras@inbox.ru>2011-07-07 22:52:35 +0300
commit5e14ab971129eb95ca02e373fc21adb46c0eaca1 (patch)
tree5316f688c7f617776b7e70c9f64932fe7596cadb /src/gui/popupmenu.h
parented950471f7ae02c4618fa995c305832f12dc9cd7 (diff)
downloadManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.gz
ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.bz2
ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.xz
ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.zip
Remove undescore from variables and defines.
Diffstat (limited to 'src/gui/popupmenu.h')
-rw-r--r--src/gui/popupmenu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h
index 8830bdd00..afa4bdfa2 100644
--- a/src/gui/popupmenu.h
+++ b/src/gui/popupmenu.h
@@ -29,9 +29,9 @@
#include <guichan/actionlistener.hpp>
#ifdef __GNUC__
-#define _UNUSED_ __attribute__ ((unused))
+#define A_UNUSED __attribute__ ((unused))
#else
-#define _UNUSED_
+#define A_UNUSED
#endif
class Being;
@@ -152,7 +152,7 @@ class PopupMenu : public Popup, public LinkHandler
* Handles link action.
*/
void handleLink(const std::string &link,
- gcn::MouseEvent *event _UNUSED_);
+ gcn::MouseEvent *event A_UNUSED);
private:
BrowserBox* mBrowserBox;