summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-09 12:02:55 +0200
committerNoel Grandin <noel@peralex.com>2013-10-10 09:19:04 +0200
commit6b25dd2f914a7bdd4d39e21675fcedd049192b73 (patch)
treedf621ce971c31da7916392d40458a5c858130b54 /sw
parent3acd7ab515ab6e97c9110b89d13136d94be5eef6 (diff)
convert sw/source/ui/inc/c*.hxx from String to OUString
Change-Id: I8b8c73a0ba9b1e40549c1832ed6ad5b630d4e620
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/config/optload.cxx6
-rw-r--r--sw/source/ui/fldui/changedb.cxx8
-rw-r--r--sw/source/ui/frmdlg/cption.cxx2
-rw-r--r--sw/source/ui/inc/caption.hxx32
-rw-r--r--sw/source/ui/inc/cfgitems.hxx2
-rw-r--r--sw/source/ui/inc/changedb.hxx2
-rw-r--r--sw/source/ui/inc/content.hxx42
-rw-r--r--sw/source/ui/inc/conttree.hxx28
-rw-r--r--sw/source/ui/inc/convert.hxx2
-rw-r--r--sw/source/ui/inc/cption.hxx6
-rw-r--r--sw/source/ui/uiview/viewdlg2.cxx2
-rw-r--r--sw/source/ui/utlui/glbltree.cxx14
12 files changed, 73 insertions, 73 deletions
diff --git a/sw/source/ui/config/optload.cxx b/sw/source/ui/config/optload.cxx
index f1fc397b0a03..00d2170d61d5 100644
--- a/sw/source/ui/config/optload.cxx
+++ b/sw/source/ui/config/optload.cxx
@@ -662,11 +662,11 @@ IMPL_LINK_NOARG(SwCaptionOptPage, ShowEntryHdl)
aCategoryBox.InsertSwEntry(SwBoxEntry(m_sDrawing));
}
- if(pOpt->GetCategory().Len())
+ if(!pOpt->GetCategory().isEmpty())
aCategoryBox.SetText(pOpt->GetCategory());
else
aCategoryBox.SetText(m_sNone);
- if (pOpt->GetCategory().Len() &&
+ if (!pOpt->GetCategory().isEmpty() &&
aCategoryBox.GetEntryPos(OUString(pOpt->GetCategory())) == COMBOBOX_ENTRY_NOTFOUND)
aCategoryBox.InsertEntry(pOpt->GetCategory());
if (aCategoryBox.GetText().isEmpty())
@@ -716,7 +716,7 @@ IMPL_LINK_NOARG(SwCaptionOptPage, ShowEntryHdl)
aLbLevel.SelectEntryPos( nLevelPos );
aEdDelim.SetText(pOpt->GetSeparator());
aNumberingSeparatorED.SetText( pOpt->GetNumSeparator() );
- if(pOpt->GetCharacterStyle().Len())
+ if(!pOpt->GetCharacterStyle().isEmpty())
aCharStyleLB.SelectEntry( pOpt->GetCharacterStyle() );
else
aCharStyleLB.SelectEntryPos( 0 );
diff --git a/sw/source/ui/fldui/changedb.cxx b/sw/source/ui/fldui/changedb.cxx
index e71e3988135b..26000b2c46f9 100644
--- a/sw/source/ui/fldui/changedb.cxx
+++ b/sw/source/ui/fldui/changedb.cxx
@@ -134,11 +134,11 @@ void SwChangeDBDlg::FillDBPopup()
}
-SvTreeListEntry* SwChangeDBDlg::Insert(const String& rDBName)
+SvTreeListEntry* SwChangeDBDlg::Insert(const OUString& rDBName)
{
- String sDBName(rDBName.GetToken(0, DB_DELIM));
- String sTableName(rDBName.GetToken(1, DB_DELIM));
- sal_IntPtr nCommandType = rDBName.GetToken(2, DB_DELIM).ToInt32();
+ String sDBName(rDBName.getToken(0, DB_DELIM));
+ String sTableName(rDBName.getToken(1, DB_DELIM));
+ sal_IntPtr nCommandType = rDBName.getToken(2, DB_DELIM).toInt32();
SvTreeListEntry* pParent;
SvTreeListEntry* pChild;
diff --git a/sw/source/ui/frmdlg/cption.cxx b/sw/source/ui/frmdlg/cption.cxx
index f124f1be90e5..a03826328ec0 100644
--- a/sw/source/ui/frmdlg/cption.cxx
+++ b/sw/source/ui/frmdlg/cption.cxx
@@ -80,7 +80,7 @@ public:
String GetCharacterStyle() const;
};
-String SwCaptionDialog::our_aSepTextSave = OUString(": "); // Caption separator text
+OUString SwCaptionDialog::our_aSepTextSave(": "); // Caption separator text
SwCaptionDialog::SwCaptionDialog( Window *pParent, SwView &rV ) :
SvxStandardDialog( pParent, "InsertCaptionDialog", "modules/swriter/ui/insertcaption.ui" ),
diff --git a/sw/source/ui/inc/caption.hxx b/sw/source/ui/inc/caption.hxx
index 3dc05c481c43..395100a5d7e4 100644
--- a/sw/source/ui/inc/caption.hxx
+++ b/sw/source/ui/inc/caption.hxx
@@ -30,14 +30,14 @@ private:
sal_Bool bUseCaption;
SwCapObjType eObjType;
SvGlobalName aOleId;
- String sCategory;
- sal_uInt16 nNumType;
- OUString sNumberSeparator;
- String sCaption;
- sal_uInt16 nPos;
- sal_uInt16 nLevel;
- String sSeparator;
- String sCharacterStyle;
+ OUString sCategory;
+ sal_uInt16 nNumType;
+ OUString sNumberSeparator;
+ OUString sCaption;
+ sal_uInt16 nPos;
+ sal_uInt16 nLevel;
+ OUString sSeparator;
+ OUString sCharacterStyle;
bool bIgnoreSeqOpts; // is not being saved
sal_Bool bCopyAttributes; // -""-
@@ -56,8 +56,8 @@ public:
inline const SvGlobalName& GetOleId() const { return aOleId; }
inline void SetOleId(const SvGlobalName &rId) { aOleId = rId; }
- inline const String& GetCategory() const { return sCategory; }
- inline void SetCategory(const String& rCat) { sCategory = rCat; }
+ inline const OUString& GetCategory() const { return sCategory; }
+ inline void SetCategory(const OUString& rCat) { sCategory = rCat; }
inline sal_uInt16 GetNumType() const { return nNumType; }
inline void SetNumType(const sal_uInt16 nNT) { nNumType = nNT; }
@@ -65,8 +65,8 @@ public:
const OUString& GetNumSeparator() const { return sNumberSeparator; }
void SetNumSeparator(const OUString& rSet) {sNumberSeparator = rSet;}
- inline const String& GetCaption() const { return sCaption; }
- inline void SetCaption(const String& rCap) { sCaption = rCap; }
+ inline const OUString& GetCaption() const { return sCaption; }
+ inline void SetCaption(const OUString& rCap) { sCaption = rCap; }
inline sal_uInt16 GetPos() const { return nPos; }
inline void SetPos(const sal_uInt16 nP) { nPos = nP; }
@@ -74,11 +74,11 @@ public:
inline sal_uInt16 GetLevel() const { return nLevel; }
inline void SetLevel(const sal_uInt16 nLvl) { nLevel = nLvl; }
- inline const String& GetSeparator() const { return sSeparator; }
- inline void SetSeparator(const String& rSep) { sSeparator = rSep; }
+ inline const OUString& GetSeparator() const { return sSeparator; }
+ inline void SetSeparator(const OUString& rSep) { sSeparator = rSep; }
- const String& GetCharacterStyle() const { return sCharacterStyle; }
- void SetCharacterStyle(const String& rStyle)
+ const OUString& GetCharacterStyle() const { return sCharacterStyle; }
+ void SetCharacterStyle(const OUString& rStyle)
{ sCharacterStyle = rStyle; }
inline bool& IgnoreSeqOpts() { return bIgnoreSeqOpts; }
diff --git a/sw/source/ui/inc/cfgitems.hxx b/sw/source/ui/inc/cfgitems.hxx
index e0a21c16115e..10729e8ea350 100644
--- a/sw/source/ui/inc/cfgitems.hxx
+++ b/sw/source/ui/inc/cfgitems.hxx
@@ -136,7 +136,7 @@ public:
virtual int operator==( const SfxPoolItem& ) const;
const OUString &GetFax() const { return sFaxName; }
- void SetFax( const String& rFax) { sFaxName = rFax; }
+ void SetFax( const OUString& rFax) { sFaxName = rFax; }
sal_Bool IsPrintProspect() const { return bPrintProspect; }
diff --git a/sw/source/ui/inc/changedb.hxx b/sw/source/ui/inc/changedb.hxx
index baf68a790f30..85b99df8abe5 100644
--- a/sw/source/ui/inc/changedb.hxx
+++ b/sw/source/ui/inc/changedb.hxx
@@ -56,7 +56,7 @@ class SwChangeDBDlg: public SvxStandardDialog
virtual void Apply();
void UpdateFlds();
void FillDBPopup();
- SvTreeListEntry* Insert(const String& rDBName);
+ SvTreeListEntry* Insert(const OUString& rDBName);
void ShowDBName(const SwDBData& rDBData);
public:
diff --git a/sw/source/ui/inc/content.hxx b/sw/source/ui/inc/content.hxx
index 4e1cbcd77052..9d8d4ddcbf64 100644
--- a/sw/source/ui/inc/content.hxx
+++ b/sw/source/ui/inc/content.hxx
@@ -58,7 +58,7 @@ class SwOutlineContent : public SwContent
bool bIsMoveable;
public:
SwOutlineContent( const SwContentType* pCnt,
- const String& rName,
+ const OUString& rName,
sal_uInt16 nArrPos,
sal_uInt8 nLevel,
bool bMove,
@@ -79,7 +79,7 @@ class SwRegionContent : public SwContent
public:
SwRegionContent( const SwContentType* pCnt,
- const String& rName,
+ const OUString& rName,
sal_uInt8 nLevel,
long nYPos) :
SwContent(pCnt, rName, nYPos),
@@ -90,20 +90,20 @@ class SwRegionContent : public SwContent
class SwURLFieldContent : public SwContent
{
- String sURL;
+ OUString sURL;
const SwTxtINetFmt* pINetAttr;
public:
SwURLFieldContent( const SwContentType* pCnt,
- const String& rName,
- const String& rURL,
+ const OUString& rName,
+ const OUString& rURL,
const SwTxtINetFmt* pAttr,
long nYPos )
: SwContent( pCnt, rName, nYPos ), sURL( rURL ), pINetAttr( pAttr )
{}
virtual sal_Bool IsProtect() const;
- const String& GetURL() { return sURL; }
+ const OUString& GetURL() { return sURL; }
const SwTxtINetFmt* GetINetAttr() { return pINetAttr; }
};
@@ -115,13 +115,13 @@ class SwPostItContent : public SwContent
bool mbPostIt;
public:
SwPostItContent( const SwContentType* pCnt,
- const String& rName,
+ const OUString& rName,
const SwFmtFld* pField,
long nYPos )
: SwContent( pCnt, rName, nYPos ), pFld( pField ),mbPostIt(true)
{}
SwPostItContent( const SwContentType* pCnt,
- const String& rName,
+ const OUString& rName,
SwRedline* pRed,
long nYPos )
: SwContent( pCnt, rName, nYPos ), pRedline( pRed ),mbPostIt(false)
@@ -137,14 +137,14 @@ public:
class SwGraphicContent : public SwContent
{
- String sLink;
+ OUString sLink;
public:
- SwGraphicContent(const SwContentType* pCnt, const String& rName, const String& rLink, long nYPos)
+ SwGraphicContent(const SwContentType* pCnt, const OUString& rName, const OUString& rLink, long nYPos)
: SwContent( pCnt, rName, nYPos ), sLink( rLink )
{}
virtual ~SwGraphicContent();
- const String& GetLink() const {return sLink;}
+ const OUString& GetLink() const {return sLink;}
};
//----------------------------------------------------------------------------
@@ -152,7 +152,7 @@ class SwTOXBaseContent : public SwContent
{
const SwTOXBase* pBase;
public:
- SwTOXBaseContent(const SwContentType* pCnt, const String& rName, long nYPos, const SwTOXBase& rBase)
+ SwTOXBaseContent(const SwContentType* pCnt, const OUString& rName, long nYPos, const SwTOXBase& rBase)
: SwContent( pCnt, rName, nYPos ), pBase(&rBase)
{}
virtual ~SwTOXBaseContent();
@@ -171,12 +171,12 @@ class SwContentType : public SwTypeNumber
{
SwWrtShell* pWrtShell;
SwContentArr* pMember; // array for content
- String sContentTypeName; // name of content type
- String sSingleContentTypeName; // name of content type, singular
- String sTypeToken; // attachment for URL
- sal_uInt16 nMemberCount; // content count
- sal_uInt16 nContentType; // content type's Id
- sal_uInt8 nOutlineLevel;
+ OUString sContentTypeName; // name of content type
+ OUString sSingleContentTypeName; // name of content type, singular
+ OUString sTypeToken; // attachment for URL
+ sal_uInt16 nMemberCount; // content count
+ sal_uInt16 nContentType; // content type's Id
+ sal_uInt8 nOutlineLevel;
bool bDataValid : 1; //
bool bEdit: 1; // can this type be edited?
bool bDelete: 1; // can this type be deleted?
@@ -192,9 +192,9 @@ public:
{return nMemberCount;};
sal_uInt16 GetType() const {return nContentType;}
const SwContent* GetMember(sal_uInt16 nIndex);
- const String& GetName() {return sContentTypeName;}
- const String& GetSingleName() const {return sSingleContentTypeName;}
- const String& GetTypeToken() const{return sTypeToken;}
+ const OUString& GetName() {return sContentTypeName;}
+ const OUString& GetSingleName() const {return sSingleContentTypeName;}
+ const OUString& GetTypeToken() const{return sTypeToken;}
void SetOutlineLevel(sal_uInt8 nNew)
{
diff --git a/sw/source/ui/inc/conttree.hxx b/sw/source/ui/inc/conttree.hxx
index 818144a638d0..c0cc6fdced44 100644
--- a/sw/source/ui/inc/conttree.hxx
+++ b/sw/source/ui/inc/conttree.hxx
@@ -49,21 +49,21 @@ class SfxObjectShell;
class SwContentTree : public SvTreeListBox
{
ImageList aEntryImages;
- String sSpace;
+ OUString sSpace;
AutoTimer aUpdTimer;
SwContentType* aActiveContentArr[CONTENT_TYPE_MAX];
SwContentType* aHiddenContentArr[CONTENT_TYPE_MAX];
- String aContextStrings[CONTEXT_COUNT + 1];
- String sRemoveIdx;
- String sUpdateIdx;
- String sUnprotTbl;
- String sRename;
- String sReadonlyIdx;
- String sInvisible;
- String sPostItShow;
- String sPostItHide;
- String sPostItDelete;
+ OUString aContextStrings[CONTEXT_COUNT + 1];
+ OUString sRemoveIdx;
+ OUString sUpdateIdx;
+ OUString sUnprotTbl;
+ OUString sRename;
+ OUString sReadonlyIdx;
+ OUString sInvisible;
+ OUString sPostItShow;
+ OUString sPostItHide;
+ OUString sPostItDelete;
SwWrtShell* pHiddenShell; // dropped Doc
SwWrtShell* pActiveShell; // the active or a const. open view
@@ -207,7 +207,7 @@ class SwLBoxString : public SvLBoxString
public:
SwLBoxString( SvTreeListEntry* pEntry, sal_uInt16 nFlags,
- const String& rStr ) : SvLBoxString(pEntry,nFlags,rStr)
+ const OUString& rStr ) : SvLBoxString(pEntry,nFlags,rStr)
{
}
@@ -223,7 +223,7 @@ class SwGlobalTree : public SvTreeListBox
{
private:
AutoTimer aUpdateTimer;
- String aContextStrings[GLOBAL_CONTEXT_COUNT];
+ OUString aContextStrings[GLOBAL_CONTEXT_COUNT];
ImageList aEntryImages;
@@ -313,7 +313,7 @@ public:
void TbxMenuHdl(sal_uInt16 nTbxId, ToolBox* pBox);
void InsertRegion( const SwGlblDocContent* pCont,
- const String* pFileName = 0 );
+ const OUString* pFileName = 0 );
void EditContent(const SwGlblDocContent* pCont );
void ShowTree();
diff --git a/sw/source/ui/inc/convert.hxx b/sw/source/ui/inc/convert.hxx
index aa53428b1967..02fba96eeaf9 100644
--- a/sw/source/ui/inc/convert.hxx
+++ b/sw/source/ui/inc/convert.hxx
@@ -51,7 +51,7 @@ class SwConvertTableDlg: public SfxModalDialog
CheckBox* mpBorderCB;
PushButton* mpAutoFmtBtn;
- String sConvertTextTable;
+ OUString sConvertTextTable;
SwTableAutoFmt* pTAutoFmt;
SwWrtShell* pShell;
diff --git a/sw/source/ui/inc/cption.hxx b/sw/source/ui/inc/cption.hxx
index 487cf26870d3..71adbdda2a17 100644
--- a/sw/source/ui/inc/cption.hxx
+++ b/sw/source/ui/inc/cption.hxx
@@ -85,8 +85,8 @@ class SwCaptionDialog : public SvxStandardDialog
SwFldMgr *pMgr; // pointer to save the include
SelectionType eType;
- String sCharacterStyle;
- String sObjectName;
+ OUString sCharacterStyle;
+ OUString sObjectName;
bool bCopyAttributes;
bool bOrderNumberingFirst; //#i61007# order of captions
@@ -104,7 +104,7 @@ class SwCaptionDialog : public SvxStandardDialog
void CheckButtonWidth();
void ApplyCaptionOrder(); //#i61007# order of captions
- static String our_aSepTextSave; // Save caption separator text
+ static OUString our_aSepTextSave; // Save caption separator text
public:
SwCaptionDialog( Window *pParent, SwView &rV );
~SwCaptionDialog();
diff --git a/sw/source/ui/uiview/viewdlg2.cxx b/sw/source/ui/uiview/viewdlg2.cxx
index e91509dcf828..bb67dd443a7d 100644
--- a/sw/source/ui/uiview/viewdlg2.cxx
+++ b/sw/source/ui/uiview/viewdlg2.cxx
@@ -167,7 +167,7 @@ void SwView::InsertCaption(const InsCaptionOpt *pOpt)
GetWrtShell().InsertLabel( eT,
pOpt->GetCaption(),
- !pOpt->IgnoreSeqOpts() ? aEmptyStr : pOpt->GetSeparator(),
+ !pOpt->IgnoreSeqOpts() ? aEmptyOUStr : pOpt->GetSeparator(),
pOpt->GetNumSeparator(),
!pOpt->GetPos(),
nID,
diff --git a/sw/source/ui/utlui/glbltree.cxx b/sw/source/ui/utlui/glbltree.cxx
index 438e8627bdaa..557e09a58e4f 100644
--- a/sw/source/ui/utlui/glbltree.cxx
+++ b/sw/source/ui/utlui/glbltree.cxx
@@ -206,7 +206,7 @@ sal_Int8 SwGlobalTree::ExecuteDrop( const ExecuteDropEvent& rEvt )
{
TransferableDataHelper aData( rEvt.maDropEvent.Transferable );
- String sFileName;
+ OUString sFileName;
const SwGlblDocContent* pCnt = pDropEntry ?
(const SwGlblDocContent*)pDropEntry->GetUserData() :
0;
@@ -243,8 +243,8 @@ sal_Int8 SwGlobalTree::ExecuteDrop( const ExecuteDropEvent& rEvt )
}
delete pTempContents;
}
- else if( 0 != (sFileName =
- SwNavigationPI::CreateDropFileName( aData )).Len())
+ else if( !(sFileName =
+ SwNavigationPI::CreateDropFileName( aData )).isEmpty())
{
INetURLObject aTemp(sFileName);
GraphicDescriptor aDesc(aTemp);
@@ -704,7 +704,7 @@ void SwGlobalTree::Display(bool bOnlyUpdateUserData)
}
}
-void SwGlobalTree::InsertRegion( const SwGlblDocContent* pCont, const String* pFileName )
+void SwGlobalTree::InsertRegion( const SwGlblDocContent* pCont, const OUString* pFileName )
{
Sequence< OUString > aFileNames;
if ( !pFileName )
@@ -716,7 +716,7 @@ void SwGlobalTree::InsertRegion( const SwGlblDocContent* pCont, const String* pF
OUString("swriter"), true );
pDocInserter->StartExecuteModal( LINK( this, SwGlobalTree, DialogClosedHdl ) );
}
- else if ( pFileName->Len() )
+ else if ( !pFileName->isEmpty() )
{
aFileNames.realloc(1);
INetURLObject aFileName;
@@ -929,10 +929,10 @@ void SwGlobalTree::ExcecuteContextMenuAction( sal_uInt16 nSelectedPopupEntry
SID_SAVEASDOC, SFX_CALLMODE_SYNCHRON );
SfxObjectShell& rObj = *pFrame->GetObjectShell();
const SfxMedium* pMedium = rObj.GetMedium();
- String sNewFile(pMedium->GetURLObject().GetMainURL(INetURLObject::DECODE_TO_IURI));
+ OUString sNewFile(pMedium->GetURLObject().GetMainURL(INetURLObject::DECODE_TO_IURI));
// Insert the area with the Doc-Name
// Bring the own Doc in the foreground
- if(aFrmListener.IsValid() && sNewFile.Len())
+ if(aFrmListener.IsValid() && !sNewFile.isEmpty())
{
pGlobFrm->ToTop();
// Due to the update the entries are invalid