summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-19 17:26:23 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 10:49:27 +0200
commita7f84fc431a52ee51feea4af40af279659ad9c25 (patch)
treec062f90cf116e92cb23d99e0c76639c39e658170 /fpicker
parent04f72acef2fea5a3d0a9c5c76730bb05977c6033 (diff)
convert include/svtools/QueryFolderName.hxx from String to OUString
Change-Id: Iec274c35c3ce4f1f9d5f17bd5562b52b788595d4
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index 21a789110574..40693ab1ec89 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -3356,9 +3356,9 @@ namespace svtools {
QueryFolderNameDialog::QueryFolderNameDialog
(
Window* _pParent,
- const String& rTitle,
- const String& rDefaultText,
- String* pGroupName
+ const OUString& rTitle,
+ const OUString& rDefaultText,
+ OUString* pGroupName
) :
ModalDialog( _pParent, SvtResId( DLG_FPICKER_QUERYFOLDERNAME ) ),
@@ -3371,7 +3371,7 @@ QueryFolderNameDialog::QueryFolderNameDialog
FreeResource();
SetText( rTitle );
aNameEdit.SetText( rDefaultText );
- aNameEdit.SetSelection( Selection( 0, rDefaultText.Len() ) );
+ aNameEdit.SetSelection( Selection( 0, rDefaultText.getLength() ) );
aOKBtn.SetClickHdl( LINK( this, QueryFolderNameDialog, OKHdl ) );
aNameEdit.SetModifyHdl( LINK( this, QueryFolderNameDialog, NameHdl ) );