summaryrefslogtreecommitdiff
path: root/src/gui/widgets/progressindicator.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-25 20:12:20 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-25 20:12:20 +0300
commit80b0caa35e4b84b745daef7e4102b428539cdee5 (patch)
treeeb24de08cd9bed429569b34f35fa0f638fcdc93d /src/gui/widgets/progressindicator.cpp
parent7369332bb0a6d219cb2415a0b5e65bf2825da349 (diff)
downloadmv-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.gz
mv-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.bz2
mv-80b0caa35e4b84b745daef7e4102b428539cdee5.tar.xz
mv-80b0caa35e4b84b745daef7e4102b428539cdee5.zip
Remove safeDraw implimentation from Widget.
Diffstat (limited to 'src/gui/widgets/progressindicator.cpp')
-rw-r--r--src/gui/widgets/progressindicator.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/widgets/progressindicator.cpp b/src/gui/widgets/progressindicator.cpp
index abcb12fda..a3df73b8a 100644
--- a/src/gui/widgets/progressindicator.cpp
+++ b/src/gui/widgets/progressindicator.cpp
@@ -79,3 +79,8 @@ void ProgressIndicator::draw(Graphics *graphics)
}
BLOCK_END("ProgressIndicator::draw")
}
+
+void ProgressIndicator::safeDraw(Graphics *graphics)
+{
+ ProgressIndicator::draw(graphics);
+}