diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-11-25 01:11:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-11-25 01:11:42 +0300 |
commit | 34a492ac70b3217937eafeb6db3cb9bfdc18fba9 (patch) | |
tree | cb3e079f7a830881f0b2810ed69557669704eb81 /src/gui/widgets/chattab.h | |
parent | b8e720a33502700b42569f152d63badd26d4a9b3 (diff) | |
download | plus-34a492ac70b3217937eafeb6db3cb9bfdc18fba9.tar.gz plus-34a492ac70b3217937eafeb6db3cb9bfdc18fba9.tar.bz2 plus-34a492ac70b3217937eafeb6db3cb9bfdc18fba9.tar.xz plus-34a492ac70b3217937eafeb6db3cb9bfdc18fba9.zip |
Move A_UNUSED define to include file.
Diffstat (limited to 'src/gui/widgets/chattab.h')
-rw-r--r-- | src/gui/widgets/chattab.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/widgets/chattab.h b/src/gui/widgets/chattab.h index 4e077fafb..962c0b363 100644 --- a/src/gui/widgets/chattab.h +++ b/src/gui/widgets/chattab.h @@ -28,11 +28,7 @@ #include "gui/widgets/browserbox.h" #include "gui/widgets/tab.h" -#ifdef __GNUC__ -#define A_UNUSED __attribute__ ((unused)) -#else -#define A_UNUSED -#endif +#include "localconsts.h" class ScrollArea; @@ -58,6 +54,7 @@ class ChatTab : public Tab * Constructor. */ ChatTab(const std::string &name); + ~ChatTab(); /** @@ -106,7 +103,8 @@ class ChatTab : public Tab * Add any extra help text to the output. Allows tabs to define help * for commands defined by the tab itself. */ - virtual void showHelp() {} + virtual void showHelp() + { } /** * Handle special commands. Allows a tab to handle commands it |