Kaydet (Commit) 8a0298fc authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

remove commented code

Change-Id: Ibc04f08b52d754263151ee66d03b58abe2f4e4ee
üst b3621802
...@@ -352,16 +352,11 @@ void StgEntry::GetName( OUString& rName ) const ...@@ -352,16 +352,11 @@ void StgEntry::GetName( OUString& rName ) const
short StgEntry::Compare( const StgEntry& r ) const short StgEntry::Compare( const StgEntry& r ) const
{ {
/*
short nRes = r.nNameLen - nNameLen;
if( !nRes ) return strcmp( r.aName, aName );
else return nRes;
*/
sal_Int32 nRes = r.nNameLen - nNameLen; sal_Int32 nRes = r.nNameLen - nNameLen;
if( !nRes ) if( !nRes )
nRes = r.aName.compareTo( aName ); nRes = r.aName.compareTo( aName );
return (short)nRes; return (short)nRes;
//return aName.CompareTo( r.aName );
} }
// These load/store operations are a bit more complicated, // These load/store operations are a bit more complicated,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment