summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/inc/tools/AsynchronousTask.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/tools/AsynchronousTask.hxx')
-rw-r--r--sd/source/ui/inc/tools/AsynchronousTask.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/inc/tools/AsynchronousTask.hxx b/sd/source/ui/inc/tools/AsynchronousTask.hxx
index 3a2211f5c588..dae3210e57bd 100644
--- a/sd/source/ui/inc/tools/AsynchronousTask.hxx
+++ b/sd/source/ui/inc/tools/AsynchronousTask.hxx
@@ -33,13 +33,13 @@ public:
/** Run the next step of the task. After HasNextStep() returns false
this method should ignore further calls.
*/
- virtual void RunNextStep (void) = 0;
+ virtual void RunNextStep() = 0;
/** Return <TRUE/> when there is at least one more step to execute.
When the task has been executed completely then <FALSE/> is
returned.
*/
- virtual bool HasNextStep (void) = 0;
+ virtual bool HasNextStep() = 0;
protected:
~AsynchronousTask() {}