summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/docfile.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-25 11:42:42 +0200
committerNoel Grandin <noel@peralex.com>2013-10-01 10:08:39 +0200
commitc82d932510c88a12b260b1684522efbc69f07b26 (patch)
tree31749d5dc0a28789092ea5b009d77f17f57f9e28 /sfx2/source/doc/docfile.cxx
parent4805c2f499d66c3397958efed1663ad1ac16e1cf (diff)
convert remnants of String to OUString in SFX2 module
Change-Id: Ie07684f2b8b902b0ce0844eabc8174482e02d8db
Diffstat (limited to 'sfx2/source/doc/docfile.cxx')
-rw-r--r--sfx2/source/doc/docfile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index 329cfb8aee5c..49cb292f50ef 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -3135,7 +3135,7 @@ sal_uInt16 SfxMedium::AddVersion_Impl( util::RevisionTag& rRevision )
sal_Int32 nLength = pImp->aVersions.getLength();
for ( sal_Int32 m=0; m<nLength; m++ )
{
- sal_uInt32 nVer = static_cast<sal_uInt32>(String( pImp->aVersions[m].Identifier ).Copy(7).ToInt32());
+ sal_uInt32 nVer = static_cast<sal_uInt32>( pImp->aVersions[m].Identifier.copy(7).toInt32());
size_t n;
for ( n=0; n<aLongs.size(); ++n )
if ( nVer<aLongs[n] )