diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2013-08-17 12:53:07 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-19 14:19:34 +0000 |
commit | edba90dc39fc3141a8a9e441aa97b46baa4c6ca2 (patch) | |
tree | 6692756ca703bc994a05769ef39c09c1e177cf71 /sw/inc | |
parent | 83d874ec13f6bf260f3f4093fd1613bea23bf27c (diff) |
String to OUString + whitespaces, log messages
Change-Id: I76014ecb4dd0f040b6770965cb690cc9839bedb5
Reviewed-on: https://gerrit.libreoffice.org/5474
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/fesh.hxx | 8 | ||||
-rw-r--r-- | sw/inc/frmfmt.hxx | 10 | ||||
-rw-r--r-- | sw/inc/ndnotxt.hxx | 10 |
3 files changed, 12 insertions, 16 deletions
diff --git a/sw/inc/fesh.hxx b/sw/inc/fesh.hxx index 7f9499f778c8..43a8a950bae1 100644 --- a/sw/inc/fesh.hxx +++ b/sw/inc/fesh.hxx @@ -338,10 +338,10 @@ public: const Graphic *GetGrfAtPos( const Point &rDocPos, String &rName, sal_Bool &rbLink ) const; - const String GetObjTitle() const; - void SetObjTitle( const String& rTitle ); - const String GetObjDescription() const; - void SetObjDescription( const String& rDescription ); + OUString GetObjTitle() const; + void SetObjTitle( const OUString& rTitle ); + OUString GetObjDescription() const; + void SetObjDescription( const OUString& rDescription ); sal_Bool IsFrmSelected() const; diff --git a/sw/inc/frmfmt.hxx b/sw/inc/frmfmt.hxx index bf016ee46765..c6e5ebf2ac7e 100644 --- a/sw/inc/frmfmt.hxx +++ b/sw/inc/frmfmt.hxx @@ -175,12 +175,10 @@ public: virtual bool GetInfo( SfxPoolItem& rInfo ) const; - const String GetObjTitle() const; - void SetObjTitle( const String& rTitle, - bool bBroadcast = false ); - const String GetObjDescription() const; - void SetObjDescription( const String& rDescription, - bool bBroadcast = false ); + OUString GetObjTitle() const; + void SetObjTitle( const OUString& rTitle, bool bBroadcast = false ); + OUString GetObjDescription() const; + void SetObjDescription( const OUString& rDescription, bool bBroadcast = false ); /** SwFlyFrmFmt::IsBackgroundTransparent diff --git a/sw/inc/ndnotxt.hxx b/sw/inc/ndnotxt.hxx index 0cb715112406..f9d65c55dfd4 100644 --- a/sw/inc/ndnotxt.hxx +++ b/sw/inc/ndnotxt.hxx @@ -60,12 +60,10 @@ public: virtual sal_Bool SavePersistentData(); virtual sal_Bool RestorePersistentData(); - const String GetTitle() const; - void SetTitle( const String& rTitle, - bool bBroadcast = false ); - const String GetDescription() const; - void SetDescription( const String& rDescription, - bool bBroadcast = false ); + OUString GetTitle() const; + void SetTitle( const OUString& rTitle, bool bBroadcast = false ); + OUString GetDescription() const; + void SetDescription( const OUString& rDescription, bool bBroadcast = false ); void SetContour( const PolyPolygon *pPoly, sal_Bool bAutomatic = sal_False ); |