diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-22 21:20:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:38:49 +0000 |
commit | 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch) | |
tree | 5024cba9f9ea5e3b23ea26025323f6aef39488d0 /svl/source/misc/lockfilecommon.cxx | |
parent | b81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff) |
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb
Reviewed-on: https://gerrit.libreoffice.org/8182
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svl/source/misc/lockfilecommon.cxx')
-rw-r--r-- | svl/source/misc/lockfilecommon.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/svl/source/misc/lockfilecommon.cxx b/svl/source/misc/lockfilecommon.cxx index e0f3f89d0325..ea0a5965649f 100644 --- a/svl/source/misc/lockfilecommon.cxx +++ b/svl/source/misc/lockfilecommon.cxx @@ -53,7 +53,7 @@ using namespace ::com::sun::star; namespace svt { -// ---------------------------------------------------------------------- + LockFileCommon::LockFileCommon( const OUString& aOrigURL, const OUString& aPrefix ) { INetURLObject aDocURL = ResolveLinks( INetURLObject( aOrigURL ) ); @@ -65,12 +65,12 @@ LockFileCommon::LockFileCommon( const OUString& aOrigURL, const OUString& aPrefi m_aURL = INetURLObject( aShareURLString ).GetMainURL( INetURLObject::NO_DECODE ); } -// ---------------------------------------------------------------------- + LockFileCommon::~LockFileCommon() { } -// ---------------------------------------------------------------------- + INetURLObject LockFileCommon::ResolveLinks( const INetURLObject& aDocURL ) { if ( aDocURL.HasError() ) @@ -94,7 +94,7 @@ INetURLObject LockFileCommon::ResolveLinks( const INetURLObject& aDocURL ) return INetURLObject( aURLToCheck ); } -// ---------------------------------------------------------------------- + uno::Sequence< uno::Sequence< OUString > > LockFileCommon::ParseList( const uno::Sequence< sal_Int8 >& aBuffer ) { sal_Int32 nCurPos = 0; @@ -113,7 +113,7 @@ uno::Sequence< uno::Sequence< OUString > > LockFileCommon::ParseList( const uno: return aResult; } -// ---------------------------------------------------------------------- + uno::Sequence< OUString > LockFileCommon::ParseEntry( const uno::Sequence< sal_Int8 >& aBuffer, sal_Int32& io_nCurPos ) { uno::Sequence< OUString > aResult( LOCKFILE_ENTRYSIZE ); @@ -130,7 +130,7 @@ uno::Sequence< OUString > LockFileCommon::ParseEntry( const uno::Sequence< sal_I return aResult; } -// ---------------------------------------------------------------------- + OUString LockFileCommon::ParseName( const uno::Sequence< sal_Int8 >& aBuffer, sal_Int32& io_nCurPos ) { OStringBuffer aResult; @@ -168,7 +168,7 @@ OUString LockFileCommon::ParseName( const uno::Sequence< sal_Int8 >& aBuffer, sa return OStringToOUString( aResult.makeStringAndClear(), RTL_TEXTENCODING_UTF8 ); } -// ---------------------------------------------------------------------- + OUString LockFileCommon::EscapeCharacters( const OUString& aSource ) { OUStringBuffer aBuffer; @@ -183,7 +183,7 @@ OUString LockFileCommon::EscapeCharacters( const OUString& aSource ) return aBuffer.makeStringAndClear(); } -// ---------------------------------------------------------------------- + OUString LockFileCommon::GetOOOUserName() { SvtUserOptions aUserOpt; @@ -195,7 +195,7 @@ OUString LockFileCommon::GetOOOUserName() return aName; } -// ---------------------------------------------------------------------- + OUString LockFileCommon::GetCurrentLocalTime() { OUString aTime; @@ -219,7 +219,7 @@ OUString LockFileCommon::GetCurrentLocalTime() return aTime; } -// ---------------------------------------------------------------------- + uno::Sequence< OUString > LockFileCommon::GenerateOwnEntry() { uno::Sequence< OUString > aResult( LOCKFILE_ENTRYSIZE ); |