diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-11 15:00:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-15 12:25:42 +0200 |
commit | 511595e3bc2e557ab7a8c57db8f4b4943665edfd (patch) | |
tree | e6c1fbe7836321e96376154e6d21aa70506b9331 /sw/source/ui/vba/vbaselection.cxx | |
parent | 79ded16799f533bdad852bb111073dfd2c3c017d (diff) |
convert sw/source/ui/vba/*.cxx from String to OUString
Change-Id: I47b1ba2c8d6443cfadeb303881353f150c420662
Diffstat (limited to 'sw/source/ui/vba/vbaselection.cxx')
-rw-r--r-- | sw/source/ui/vba/vbaselection.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbaselection.cxx b/sw/source/ui/vba/vbaselection.cxx index 0bcc9aee8fed..fc30b2479ea3 100644 --- a/sw/source/ui/vba/vbaselection.cxx +++ b/sw/source/ui/vba/vbaselection.cxx @@ -988,11 +988,11 @@ void SwVbaSelection::GetSelectedCellRange( OUString& sTLName, OUString& sBRName uno::Reference< text::XTextTableCursor > xTextTableCursor( mxModel->getCurrentSelection(), uno::UNO_QUERY ); if( xTextTableCursor.is() ) { - String sRange( xTextTableCursor->getRangeName() ); + OUString sRange( xTextTableCursor->getRangeName() ); if( comphelper::string::getTokenCount(sRange, ':') > 0 ) { - sTLName = sRange.GetToken(0, ':'); - sBRName = sRange.GetToken(1, ':'); + sTLName = sRange.getToken(0, ':'); + sBRName = sRange.getToken(1, ':'); } } if( sTLName.isEmpty() ) |