summaryrefslogtreecommitdiff
path: root/include/sfx2/lnkbase.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-23 17:23:52 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:05 +0200
commit4779373d47341258cec36cc2178dff6ae11e5750 (patch)
tree686d3b2c2b8ed2a33c75af7a1a89d7fd9c935b2d /include/sfx2/lnkbase.hxx
parent309559f1eef2bac804821f7a07737e3d338d566f (diff)
convert includes/sfx2/lnkbase.hxx from String to OUString
Change-Id: I3816ec77dd334823100421dab90d4bc8b67542e3
Diffstat (limited to 'include/sfx2/lnkbase.hxx')
-rw-r--r--include/sfx2/lnkbase.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/sfx2/lnkbase.hxx b/include/sfx2/lnkbase.hxx
index 88bec2d6ee98..5b8d1b1d8c2e 100644
--- a/include/sfx2/lnkbase.hxx
+++ b/include/sfx2/lnkbase.hxx
@@ -71,7 +71,7 @@ private:
friend class SvLinkSource;
SvLinkSourceRef xObj;
- String aLinkName;
+ OUString aLinkName;
BaseLink_Impl* pImpl;
sal_uInt16 nObjType;
sal_Bool bVisible : 1;
@@ -79,15 +79,15 @@ private:
sal_Bool bUseCache : 1; // for Graphics Links!
sal_Bool bWasLastEditOK : 1;
- DECL_LINK( EndEditHdl, String* );
+ DECL_LINK( EndEditHdl, OUString* );
- bool ExecuteEdit( const String& _rNewName );
+ bool ExecuteEdit( const OUString& _rNewName );
protected:
void SetObjType( sal_uInt16 );
// Set LinkSourceName without action
- void SetName( const String & rLn );
+ void SetName( const OUString & rLn );
ImplBaseLinkData* pImplData;
@@ -112,7 +112,7 @@ public:
TYPEINFO();
virtual void Closed();
- SvBaseLink( const String& rNm, sal_uInt16 nObjectType,
+ SvBaseLink( const OUString& rNm, sal_uInt16 nObjectType,
SvLinkSource* );
sal_uInt16 GetObjType() const { return nObjType; }
@@ -120,8 +120,8 @@ public:
void SetObj( SvLinkSource * pObj );
SvLinkSource* GetObj() const { return xObj; }
- void SetLinkSourceName( const String & rName );
- String GetLinkSourceName() const;
+ void SetLinkSourceName( const OUString & rName );
+ OUString GetLinkSourceName() const;
enum UpdateResult {
SUCCESS = 0,
@@ -129,7 +129,7 @@ public:
};
virtual UpdateResult DataChanged(
- const String & rMimeType, const ::com::sun::star::uno::Any & rValue );
+ const OUString & rMimeType, const ::com::sun::star::uno::Any & rValue );
void SetUpdateMode( sal_uInt16 );
sal_uInt16 GetUpdateMode() const;
@@ -165,7 +165,7 @@ public:
void clearStreamToLoadFrom();
inline sal_Bool WasLastEditOK() const { return bWasLastEditOK; }
- FileDialogHelper & GetInsertFileDialog(const String& rFactory) const;
+ FileDialogHelper & GetInsertFileDialog(const OUString& rFactory) const;
};
SV_DECL_IMPL_REF(SvBaseLink);