summaryrefslogtreecommitdiff
path: root/sw/source/ui/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-09 12:58:34 +0200
committerNoel Grandin <noel@peralex.com>2013-10-10 09:19:04 +0200
commit51a30356dfd4ef3761feea155d81f9e32c83c954 (patch)
tree2fd077a21586e2e7ac23692605e24aac019f5bef /sw/source/ui/inc
parent6b25dd2f914a7bdd4d39e21675fcedd049192b73 (diff)
convert sw/source/ui/inc/b*.hxx from String to OUString
Change-Id: Ieddab9087988cf57470d9f881b3137992fa3dafb
Diffstat (limited to 'sw/source/ui/inc')
-rw-r--r--sw/source/ui/inc/basesh.hxx2
-rw-r--r--sw/source/ui/inc/bookctrl.hxx2
-rw-r--r--sw/source/ui/inc/bookmark.hxx4
-rw-r--r--sw/source/ui/inc/break.hxx8
4 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/ui/inc/basesh.hxx b/sw/source/ui/inc/basesh.hxx
index 2e2577b939f2..33800a7041af 100644
--- a/sw/source/ui/inc/basesh.hxx
+++ b/sw/source/ui/inc/basesh.hxx
@@ -61,7 +61,7 @@ protected:
DECL_STATIC_LINK( SwBaseShell, InsertDBTextHdl, DBTextStruct_Impl* );
- void InsertURLButton( const String& rURL, const String& rTarget, const String& rTxt );
+ void InsertURLButton( const OUString& rURL, const OUString& rTarget, const OUString& rTxt );
void InsertTable( SfxRequest& _rRequest );
public:
diff --git a/sw/source/ui/inc/bookctrl.hxx b/sw/source/ui/inc/bookctrl.hxx
index 59b605d5342b..32a61eec0086 100644
--- a/sw/source/ui/inc/bookctrl.hxx
+++ b/sw/source/ui/inc/bookctrl.hxx
@@ -39,7 +39,7 @@ public:
~SwBookmarkControl();
private:
- String sPageNumber;
+ OUString sPageNumber;
};
diff --git a/sw/source/ui/inc/bookmark.hxx b/sw/source/ui/inc/bookmark.hxx
index c90bc1c1bb58..f57ad5896bb0 100644
--- a/sw/source/ui/inc/bookmark.hxx
+++ b/sw/source/ui/inc/bookmark.hxx
@@ -42,7 +42,7 @@ public:
sal_uInt16 GetSelectEntryCount() const;
sal_uInt16 GetSelectEntryPos( sal_uInt16 nSelIndex = 0 ) const;
- static const String aForbiddenChars;
+ static const OUString aForbiddenChars;
};
class SwInsertBookmarkDlg: public SvxStandardDialog
@@ -51,7 +51,7 @@ class SwInsertBookmarkDlg: public SvxStandardDialog
OKButton* m_pOkBtn;
PushButton* m_pDeleteBtn;
- String sRemoveWarning;
+ OUString sRemoveWarning;
SwWrtShell &rSh;
SfxRequest& rReq;
diff --git a/sw/source/ui/inc/break.hxx b/sw/source/ui/inc/break.hxx
index f6afcaf74a24..9c427853ebaa 100644
--- a/sw/source/ui/inc/break.hxx
+++ b/sw/source/ui/inc/break.hxx
@@ -42,9 +42,9 @@ class SwBreakDlg: public SvxStandardDialog
CheckBox* m_pPageNumBox;
NumericField* m_pPageNumEdit;
- String aTemplate;
- sal_uInt16 nKind;
- sal_uInt16 nPgNum;
+ OUString aTemplate;
+ sal_uInt16 nKind;
+ sal_uInt16 nPgNum;
sal_Bool bHtmlMode;
@@ -62,7 +62,7 @@ public:
SwBreakDlg( Window *pParent, SwWrtShell &rSh );
~SwBreakDlg();
- String GetTemplateName() { return aTemplate; }
+ OUString GetTemplateName() { return aTemplate; }
sal_uInt16 GetKind() { return nKind; }
sal_uInt16 GetPageNumber() { return nPgNum; }
};