diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-03 02:34:17 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-02-03 02:46:26 +0900 |
commit | f439dde9be6e269903dfd65fb63a786fcaba3971 (patch) | |
tree | ce52ae0c7e780196a80c452536864e44defb3d78 /cui/source/dialogs | |
parent | 1f741dfeeab848424b91420390d2853572056e00 (diff) |
Replaced String by rtl::OUString
Diffstat (limited to 'cui/source/dialogs')
-rw-r--r-- | cui/source/dialogs/insdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index 5312e6f694ff..2ff622ba546d 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -468,7 +468,7 @@ SvInsertPlugInDialog::~SvInsertPlugInDialog() static void Plugin_ImplFillCommandSequence( const String& aCommands, uno::Sequence< beans::PropertyValue >& aCommandSequence ) { - sal_uInt16 nEaten; + sal_Int32 nEaten; SvCommandList aLst; aLst.AppendCommands( aCommands, &nEaten ); @@ -478,7 +478,7 @@ static void Plugin_ImplFillCommandSequence( const String& aCommands, uno::Sequen { aCommandSequence[nIndex].Name = aLst[ nIndex ].GetCommand(); aCommandSequence[nIndex].Handle = -1; - aCommandSequence[nIndex].Value = makeAny( OUString( aLst[ nIndex ].GetArgument() ) ); + aCommandSequence[nIndex].Value = makeAny( aLst[ nIndex ].GetArgument() ); aCommandSequence[nIndex].State = beans::PropertyState_DIRECT_VALUE; } } |