diff options
author | Noel Power <noel.power@novell.com> | 2011-12-15 15:13:04 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-12-15 15:15:08 +0000 |
commit | f269629d1b0182d89b2f5a769fbb0f8dcb815ec3 (patch) | |
tree | fe14213a505231f6844033dda96c6f72b68f59db /basctl | |
parent | 6198fcd7064180a0bf8a6d67f63f784610aa9ba8 (diff) |
fix mistaken String::CreateFromInt32 -> OUString::valueOf conversion
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/scriptdocument.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index e75affad5a1c..a1940293198c 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -1311,7 +1311,7 @@ namespace basctl ::std::insert_iterator< ::std::set< ::rtl::OUString > >( aUsedNamesCheck, aUsedNamesCheck.begin() ) ); bool bValid = false; - sal_uInt16 i = 1; + sal_Int32 i = 1; while ( !bValid ) { aObjectName = aBaseName; |