diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
commit | 5e14ab971129eb95ca02e373fc21adb46c0eaca1 (patch) | |
tree | 5316f688c7f617776b7e70c9f64932fe7596cadb /src/guichan/widgets/dropdown.cpp | |
parent | ed950471f7ae02c4618fa995c305832f12dc9cd7 (diff) | |
download | ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.gz ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.bz2 ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.xz ManaVerse-5e14ab971129eb95ca02e373fc21adb46c0eaca1.zip |
Remove undescore from variables and defines.
Diffstat (limited to 'src/guichan/widgets/dropdown.cpp')
-rw-r--r-- | src/guichan/widgets/dropdown.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/guichan/widgets/dropdown.cpp b/src/guichan/widgets/dropdown.cpp index e02f0fa3b..7af01e703 100644 --- a/src/guichan/widgets/dropdown.cpp +++ b/src/guichan/widgets/dropdown.cpp @@ -436,7 +436,7 @@ namespace gcn } } - void DropDown::focusLost(const Event& event _UNUSED_) + void DropDown::focusLost(const Event& event A_UNUSED) { foldUp(); mInternalFocusHandler.focusNone(); @@ -451,7 +451,7 @@ namespace gcn BasicContainer::death(event); } - void DropDown::action(const ActionEvent& actionEvent _UNUSED_) + void DropDown::action(const ActionEvent& actionEvent A_UNUSED) { foldUp(); releaseModalMouseInputFocus(); @@ -543,7 +543,7 @@ namespace gcn mListBox->setSelectionColor(color); } - void DropDown::valueChanged(const SelectionEvent& event _UNUSED_) + void DropDown::valueChanged(const SelectionEvent& event A_UNUSED) { distributeValueChangedEvent(); } |