diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-15 23:14:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-15 23:14:41 +0300 |
commit | 9502e9c968fac129ab57d7b0496c874086995b04 (patch) | |
tree | 3709ed6883222be555d39f7a606b674fb67ebb52 /src/gui/widgets/checkbox.cpp | |
parent | e3ec854f275cc6f79129bbdd3129be277100908f (diff) | |
download | mv-9502e9c968fac129ab57d7b0496c874086995b04.tar.gz mv-9502e9c968fac129ab57d7b0496c874086995b04.tar.bz2 mv-9502e9c968fac129ab57d7b0496c874086995b04.tar.xz mv-9502e9c968fac129ab57d7b0496c874086995b04.zip |
move actionlistener from base into listeners.
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index 2f11dc2ce..0721e29f6 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -39,7 +39,7 @@ float CheckBox::mAlpha = 1.0; CheckBox::CheckBox(const Widget2 *const widget, const std::string &restrict caption, const bool selected, - gcn::ActionListener *const listener, + ActionListener *const listener, const std::string &restrict eventId) : gcn::CheckBox(caption, selected), Widget2(widget), |