summaryrefslogtreecommitdiff
path: root/sc/inc/progress.hxx
diff options
context:
space:
mode:
authorNourah.AlShoeibi <nourah.alshoeibi@gmail.com>2013-07-09 19:50:34 +0300
committerPetr Mladek <pmladek@suse.cz>2013-07-09 17:13:53 +0000
commit59db0c242a7c97bd40b1cc33dd37f34fcefa5019 (patch)
treed41076963c7dfd401b828eb87b00730bf393fb14 /sc/inc/progress.hxx
parentb45118b6c006b6c7f442fe70acb329ac843c11e1 (diff)
Modifying comments to meet Doxygen standards
Change-Id: I5626478f75a95a47493689db73b2886e316edb5d Reviewed-on: https://gerrit.libreoffice.org/4788 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'sc/inc/progress.hxx')
-rw-r--r--sc/inc/progress.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/progress.hxx b/sc/inc/progress.hxx
index 52c1fe22ddf8..db7be4a5d450 100644
--- a/sc/inc/progress.hxx
+++ b/sc/inc/progress.hxx
@@ -52,7 +52,7 @@ private:
SfxProgress* pProgress;
- // not implemented
+ /// not implemented
ScProgress( const ScProgress& );
ScProgress& operator=( const ScProgress& );
@@ -80,10 +80,10 @@ public:
~ScProgress();
#ifdef SC_PROGRESS_CXX
- // for DummyInterpret only, never use otherwise!!!
+ /// for DummyInterpret only, never use otherwise!!!
ScProgress();
#endif
- // might be NULL!
+ /// might be NULL!
SfxProgress* GetSfxProgress() const { return pProgress; }
sal_Bool SetStateText( sal_uLong nVal, const String &rVal, sal_uLong nNewRange = 0 )
@@ -124,14 +124,14 @@ public:
return sal_True;
}
sal_Bool SetStateOnPercent( sal_uLong nVal )
- { // only if percentage increased
+ { /// only if percentage increased
if ( nGlobalRange && (nVal * 100 /
nGlobalRange) > nGlobalPercent )
return SetState( nVal );
return sal_True;
}
sal_Bool SetStateCountDownOnPercent( sal_uLong nVal )
- { // only if percentage increased
+ { /// only if percentage increased
if ( nGlobalRange &&
((nGlobalRange - nVal) * 100 /
nGlobalRange) > nGlobalPercent )