summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/tools
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-17 13:26:54 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-17 13:26:54 +0100
commit23951d3a0d99d72547df9850b31aaa0087aca0fe (patch)
tree95eb07c53cfe1c18949752f83589f157b1e0695e /sd/source/ui/inc/tools
parent3d6bed44c8ca414f60c03223482b9f7b94d56c14 (diff)
removetooltypes01: #i112600# Fix problems with autodoc TRUE/FALSE
Diffstat (limited to 'sd/source/ui/inc/tools')
-rwxr-xr-xsd/source/ui/inc/tools/AsynchronousTask.hxx4
-rwxr-xr-xsd/source/ui/inc/tools/TimerBasedTaskExecution.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/inc/tools/AsynchronousTask.hxx b/sd/source/ui/inc/tools/AsynchronousTask.hxx
index 28835560531c..f3135d3fcce7 100755
--- a/sd/source/ui/inc/tools/AsynchronousTask.hxx
+++ b/sd/source/ui/inc/tools/AsynchronousTask.hxx
@@ -43,8 +43,8 @@ public:
*/
virtual void RunNextStep (void) = 0;
- /** Return <sal_True/> when there is at least one more step to execute.
- When the task has been executed completely then <sal_False/> is
+ /** 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;
diff --git a/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx b/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx
index bb3e4d4beb50..33ec3ccd9993 100755
--- a/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx
+++ b/sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx
@@ -40,7 +40,7 @@ class AsynchronousTask;
nMillisecondsBetweenSteps milliseconds as much steps are executed as fit
into a nMaxTimePerStep millisecond intervall.
- When a task is executed completely, i.e. HasNextStep() returns <sal_False/>,
+ When a task is executed completely, i.e. HasNextStep() returns <FALSE/>,
the TimerBasedTaskExecution destroys itself. This, of course, works
only if the creating instance does not hold a shared_ptr to that object.
*/