diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-08 15:19:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-10-10 09:19:01 +0200 |
commit | e2af23343b8d2ac672827d3e7d8623fd7734fad6 (patch) | |
tree | 2d68762eb68ae5d7f862ffa1017ec4fd3ff993f6 /sw/source/ui/inc | |
parent | 04d442923914da298ec5730a89310c6b0d33acdc (diff) |
convert sw/source/ui/inc/r*.hxx from String to OUString
Change-Id: I276fdfe7ddd6cc0daa0ca7d6f51342fea718af8e
Diffstat (limited to 'sw/source/ui/inc')
-rw-r--r-- | sw/source/ui/inc/redlndlg.hxx | 26 | ||||
-rw-r--r-- | sw/source/ui/inc/regionsw.hxx | 8 |
2 files changed, 17 insertions, 17 deletions
diff --git a/sw/source/ui/inc/redlndlg.hxx b/sw/source/ui/inc/redlndlg.hxx index 41671a60b0c2..e122b4f60e2a 100644 --- a/sw/source/ui/inc/redlndlg.hxx +++ b/sw/source/ui/inc/redlndlg.hxx @@ -45,8 +45,8 @@ struct SwRedlineDataParent { const SwRedlineData* pData; // RedlineDataPtr const SwRedlineDataChild* pNext; // link to stacked data - SvTreeListEntry* pTLBParent; // corresponding TreeListBox entry - String sComment; // redline comment + SvTreeListEntry* pTLBParent; // corresponding TreeListBox entry + OUString sComment; // redline comment inline sal_Bool operator==( const SwRedlineDataParent& rObj ) const { return (pData && pData->GetSeqNo() == rObj.pData->GetSeqNo()); } @@ -76,13 +76,13 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg PopupMenu aPopup; Timer aDeselectTimer; Timer aSelectTimer; - String sInserted; - String sDeleted; - String sFormated; - String sTableChgd; - String sFmtCollSet; - String sFilterAction; - String sAutoFormat; + OUString sInserted; + OUString sDeleted; + OUString sFormated; + OUString sTableChgd; + OUString sFmtCollSet; + OUString sFilterAction; + OUString sAutoFormat; SvxTPView* pTPView; SvxRedlinTable* pTable; // PB 2006/02/02 #i48648 now SvHeaderTabListBox Link aOldSelectHdl; @@ -110,9 +110,9 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg SW_DLLPRIVATE void RemoveParents(sal_uInt16 nStart, sal_uInt16 nEnd); SW_DLLPRIVATE void InitAuthors(); - SW_DLLPRIVATE String GetRedlineText(const SwRedline& rRedln, DateTime &rDateTime, sal_uInt16 nStack = 0); - SW_DLLPRIVATE const String& GetActionText(const SwRedline& rRedln, sal_uInt16 nStack = 0); - SW_DLLPRIVATE sal_uInt16 GetRedlinePos( const SvTreeListEntry& rEntry) const; + SW_DLLPRIVATE OUString GetRedlineText(const SwRedline& rRedln, DateTime &rDateTime, sal_uInt16 nStack = 0); + SW_DLLPRIVATE OUString GetActionText(const SwRedline& rRedln, sal_uInt16 nStack = 0); + SW_DLLPRIVATE sal_uInt16 GetRedlinePos( const SvTreeListEntry& rEntry) const; public: SwRedlineAcceptDlg(Dialog *pParent, sal_Bool bAutoFmt = sal_False); @@ -126,7 +126,7 @@ public: void Init(sal_uInt16 nStart = 0); void CallAcceptReject( sal_Bool bSelect, sal_Bool bAccept ); - void Initialize(const String &rExtraData); + void Initialize(const OUString &rExtraData); void FillInfo(OUString &rExtraData) const; virtual void Activate(); diff --git a/sw/source/ui/inc/regionsw.hxx b/sw/source/ui/inc/regionsw.hxx index 5912f28d07e6..b60137c8caa7 100644 --- a/sw/source/ui/inc/regionsw.hxx +++ b/sw/source/ui/inc/regionsw.hxx @@ -135,7 +135,7 @@ public: SwEditRegionDlg( Window* pParent, SwWrtShell& rWrtSh ); virtual ~SwEditRegionDlg(); - void SelectSection(const String& rSectionName); + void SelectSection(const OUString& rSectionName); }; @@ -166,9 +166,9 @@ class SwInsertSectionTabPage : public SfxTabPage // #114856# edit in readonly sections CheckBox* m_pEditInReadonlyCB; - String m_sFileName; - String m_sFilterName; - String m_sFilePasswd; + OUString m_sFileName; + OUString m_sFilterName; + OUString m_sFilePasswd; ::com::sun::star::uno::Sequence <sal_Int8 > m_aNewPasswd; SwWrtShell* m_pWrtSh; |