From a7f84fc431a52ee51feea4af40af279659ad9c25 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 19 Aug 2013 17:26:23 +0200 Subject: convert include/svtools/QueryFolderName.hxx from String to OUString Change-Id: Iec274c35c3ce4f1f9d5f17bd5562b52b788595d4 --- fpicker/source/office/iodlg.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fpicker') 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 ) ); -- cgit