summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-14 17:19:45 +0200
committerNoel Grandin <noel@peralex.com>2013-08-15 09:11:36 +0200
commit3994dd5e347d140c4fa7d6f962b2e4089f1c6153 (patch)
treeeeb729601e3f10699e616bff71342412b21a788f /include
parenta067546dec428f8d467aa498bf0fd3968582e7eb (diff)
convert include/svtools/insdlg.hxx from String to OUString
Change-Id: I72c5e3e47040e78976f46f585b50ab6c12f84986
Diffstat (limited to 'include')
-rw-r--r--include/svtools/insdlg.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/insdlg.hxx b/include/svtools/insdlg.hxx
index 241f3cd128d2..419bde308e09 100644
--- a/include/svtools/insdlg.hxx
+++ b/include/svtools/insdlg.hxx
@@ -33,15 +33,15 @@ class SvObjectServer
{
private:
SvGlobalName aClassName;
- String aHumanName;
+ OUString aHumanName;
public:
- SvObjectServer( const SvGlobalName & rClassP, const String & rHumanP ) :
+ SvObjectServer( const SvGlobalName & rClassP, const OUString & rHumanP ) :
aClassName( rClassP ),
aHumanName( rHumanP ) {}
const SvGlobalName & GetClassName() const { return aClassName; }
- const String & GetHumanName() const { return aHumanName; }
+ const OUString & GetHumanName() const { return aHumanName; }
};
typedef ::std::vector< SvObjectServer > SvObjectServerList_impl;
@@ -52,7 +52,7 @@ private:
SvObjectServerList_impl aObjectServerList;
public:
- const SvObjectServer * Get( const String & rHumanName ) const;
+ const SvObjectServer * Get( const OUString & rHumanName ) const;
const SvObjectServer * Get( const SvGlobalName & ) const;
void Remove( const SvGlobalName & );
void FillInsertObjects();
@@ -70,8 +70,8 @@ public:
class SVT_DLLPUBLIC SvPasteObjectHelper
{
public:
- static String GetSotFormatUIName( SotFormatStringId nId );
- static sal_Bool GetEmbeddedName(const TransferableDataHelper& rData, String& _rName, String& _rSource, SotFormatStringId& _nFormat);
+ static OUString GetSotFormatUIName( SotFormatStringId nId );
+ static sal_Bool GetEmbeddedName(const TransferableDataHelper& rData, OUString& _rName, OUString& _rSource, SotFormatStringId& _nFormat);
};
#endif // _SVTOOLS_INSDLG_HXX