summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-28 13:50:30 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:18 +0200
commitf3caff8a730e01434b8ba31ed93d84aff45bb278 (patch)
treebcb1d0bcc5869bcb017175c09742d8207e5004b6 /sfx2/inc
parent6bd8e015221a1f4096242b09b642af46a1bc4243 (diff)
convert sfx2/inc/srchdlg.hxx from String to OUString
Change-Id: I344787557f7e9b46ba2a323ba7d3c30ecfa33f12
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/srchdlg.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/inc/srchdlg.hxx b/sfx2/inc/srchdlg.hxx
index 5913917592f8..f6be4489a726 100644
--- a/sfx2/inc/srchdlg.hxx
+++ b/sfx2/inc/srchdlg.hxx
@@ -48,9 +48,9 @@ private:
Link m_aFindHdl;
Link m_aCloseHdl;
- String m_sToggleText;
- OUString m_sConfigName;
- OString m_sWinState;
+ OUString m_sToggleText;
+ OUString m_sConfigName;
+ OString m_sWinState;
bool m_bIsConstructed;
@@ -67,8 +67,8 @@ public:
inline void SetFindHdl( const Link& rLink ) { m_aFindHdl = rLink; }
inline void SetCloseHdl( const Link& rLink ) { m_aCloseHdl = rLink; }
- inline String GetSearchText() const { return m_aSearchEdit.GetText(); }
- inline void SetSearchText( const String& _rText ) { m_aSearchEdit.SetText( _rText ); }
+ inline OUString GetSearchText() const { return m_aSearchEdit.GetText(); }
+ inline void SetSearchText( const OUString& _rText ) { m_aSearchEdit.SetText( _rText ); }
inline bool IsOnlyWholeWords() const { return ( m_aWholeWordsBox.IsChecked() != sal_False ); }
inline bool IsMarchCase() const { return ( m_aMatchCaseBox.IsChecked() != sal_False ); }
inline bool IsWrapAround() const { return ( m_aWrapAroundBox.IsChecked() != sal_False ); }