diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-16 14:27:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-18 09:59:26 +0200 |
commit | bc3b7ca3c7bfc231aff489cdb49e9cd1bc767247 (patch) | |
tree | e73fcad9003c732663594490f937c80f25e386c8 /sc/source/ui/navipi/content.cxx | |
parent | 8051bb7e18ccae0f639e65dfa86bcc18a5fb9108 (diff) |
convert remaining String in SC to OUString
Change-Id: I3ee8c3b59bf9d6ef6516f1da64cbe5f0b35af2d0
Diffstat (limited to 'sc/source/ui/navipi/content.cxx')
-rw-r--r-- | sc/source/ui/navipi/content.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/navipi/content.cxx b/sc/source/ui/navipi/content.cxx index 350765739b71..fa6c78b0ed5f 100644 --- a/sc/source/ui/navipi/content.cxx +++ b/sc/source/ui/navipi/content.cxx @@ -1168,12 +1168,12 @@ void ScContentTree::DoDrag() switch ( nType ) { case SC_CONTENT_TABLE: - pScMod->SetDragLink( aDocName, aText, EMPTY_STRING ); + pScMod->SetDragLink( aDocName, aText, EMPTY_OUSTRING ); bDoLinkTrans = true; break; case SC_CONTENT_RANGENAME: case SC_CONTENT_DBAREA: - pScMod->SetDragLink( aDocName, EMPTY_STRING, aText ); + pScMod->SetDragLink( aDocName, EMPTY_OUSTRING, aText ); bDoLinkTrans = true; break; |