diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-27 22:30:19 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-27 22:30:19 +0000 |
commit | d61fdaf1932724f86a68484c4a05195ca270646e (patch) | |
tree | c5b9fb13007679401ed0b0937660fac491b69a5c /src/gui/checkbox.cpp | |
parent | 88b3f92061c703fdf6cf0f970684fb77de6d8795 (diff) | |
download | mana-d61fdaf1932724f86a68484c4a05195ca270646e.tar.gz mana-d61fdaf1932724f86a68484c4a05195ca270646e.tar.bz2 mana-d61fdaf1932724f86a68484c4a05195ca270646e.tar.xz mana-d61fdaf1932724f86a68484c4a05195ca270646e.zip |
Removed useless yet costly dynamic casts.
Diffstat (limited to 'src/gui/checkbox.cpp')
-rw-r--r-- | src/gui/checkbox.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/checkbox.cpp b/src/gui/checkbox.cpp index ec7eb578..fab4780c 100644 --- a/src/gui/checkbox.cpp +++ b/src/gui/checkbox.cpp @@ -66,7 +66,7 @@ CheckBox::~CheckBox() void CheckBox::drawBox(gcn::Graphics* graphics) { - Image *box = NULL; + Image *box; if (mMarked) { if (isEnabled()) { @@ -80,7 +80,5 @@ void CheckBox::drawBox(gcn::Graphics* graphics) box = checkBoxDisabled; } - if (box != NULL) { - dynamic_cast<Graphics*>(graphics)->drawImage(box, 2, 2); - } + static_cast<Graphics*>(graphics)->drawImage(box, 2, 2); } |