From 59db0c242a7c97bd40b1cc33dd37f34fcefa5019 Mon Sep 17 00:00:00 2001 From: "Nourah.AlShoeibi" Date: Tue, 9 Jul 2013 19:50:34 +0300 Subject: Modifying comments to meet Doxygen standards Change-Id: I5626478f75a95a47493689db73b2886e316edb5d Reviewed-on: https://gerrit.libreoffice.org/4788 Reviewed-by: Petr Mladek Tested-by: Petr Mladek --- sc/inc/progress.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/inc/progress.hxx') 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 ) -- cgit