Kaydet (Commit) 2e5bb729 authored tarafından Hans-Joachim Lankenau's avatar Hans-Joachim Lankenau

INTEGRATION: CWS mergebuild (1.82.36); FILE MERGED

2004/06/02 13:49:37 hjs 1.82.36.2: RESYNC: (1.82-1.83); FILE MERGED
2004/05/19 10:53:56 hjs 1.82.36.1: #i8252# resolve conflict
üst 3b08eac3
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: viewfrm.cxx,v $ * $RCSfile: viewfrm.cxx,v $
* *
* $Revision: 1.84 $ * $Revision: 1.85 $
* *
* last change: $Author: kz $ $Date: 2004-06-11 17:58:51 $ * last change: $Author: hjs $ $Date: 2004-06-26 17:51:08 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -3659,9 +3659,14 @@ void SfxViewFrame::MiscState_Impl(SfxItemSet &rSet) ...@@ -3659,9 +3659,14 @@ void SfxViewFrame::MiscState_Impl(SfxItemSet &rSet)
nIndex = aTmp.SearchBackward( sal_Unicode( '.' )); nIndex = aTmp.SearchBackward( sal_Unicode( '.' ));
if ( nIndex != STRING_NOTFOUND ) if ( nIndex != STRING_NOTFOUND )
aTmp.Erase( nIndex ); aTmp.Erase( nIndex );
String aSUPDStr( String::CreateFromInt32( SUPD ));
// remove last two digits (language specific number) nIndex = aTmp.SearchCharBackward( aSUPDStr.GetBuffer(), aSUPDStr.Len() );
aTmp.Erase( aTmp.Len() - 2 ); if (( nIndex != STRING_NOTFOUND ) &&
(( nIndex+aSUPDStr.Len() ) < aTmp.Len() ))
{
nIndex += aSUPDStr.Len();
aTmp.Erase( nIndex );
}
} }
aObjMenuResString += aTmp; aObjMenuResString += aTmp;
......
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