diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-10-23 15:35:12 +0200 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-03 20:24:26 -0500 |
commit | bbf1bcd9ad9cc0368aef4a4de41e9538f6ad91b0 (patch) | |
tree | 8c7f10c39e826bbec818b3bb9f66a427b8207351 /sfx2 | |
parent | c5e5699c80cfb32a164696a2c5144b5ccb0a91a9 (diff) |
basic: String -> OUString in basicmanager
Change-Id: I6607bfe8b6bf4d29ffd01cd88a19af5e53d616b5
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index fa308568b59d..ffb4853e7ec1 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -1908,7 +1908,7 @@ ErrCode SfxMacroLoader::loadMacro( const ::rtl::OUString& rURL, com::sun::star:: aQualifiedMethod.Erase( nArgsPos - nHashPos - 1 ); } - if ( pBasMgr->HasMacro( aQualifiedMethod ) ) + if ( pBasMgr->HasMacro( OUString(aQualifiedMethod) ) ) { Any aOldThisComponent; const bool bSetDocMacroMode = ( pDoc != NULL ) && bIsDocBasic; |