diff options
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index beb36f7a7e21..1fbcba92ef80 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -521,7 +521,7 @@ void SfxDispatchController_Impl::addParametersToArgs( const com::sun::star::util { nParmIndex = 0; aToken = aParamName; - aParamName = (nParmIndex!=-1) ? aToken.getToken( 0, ':', nParmIndex ) : OUString(); + aParamName = aToken.getToken( 0, ':', nParmIndex ); aParamType = (nParmIndex!=-1) ? aToken.getToken( 0, ':', nParmIndex ) : OUString(); } |