diff options
Diffstat (limited to 'sc/inc/progress.hxx')
-rw-r--r-- | sc/inc/progress.hxx | 10 |
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 ) |