diff options
author | Ádám Csaba Király <kiraly.adam.csaba@gmail.com> | 2013-03-05 10:35:52 +0100 |
---|---|---|
committer | Muthu Subramanian K <muthusuba@gmail.com> | 2013-03-05 12:48:36 +0000 |
commit | 10bb5b8e24b90f881ac0ef758bb11a0bbd531a67 (patch) | |
tree | 267abbb4d2fa1bcb47e2defccea21cef67dacb0a /sw/inc | |
parent | de02e1e546a2141567afd8a90e54bcde72550ab1 (diff) |
fdo#38838, replacement of String with OUString
Replaced String with OUString in mediawindow.cxx, basdoc.cxx,
basdoc.hxx and bastype3.cxx. In other files I only replaced,
what was necessary for the changes in basdoc to work.
Change-Id: I1ad0e7e262f8becdf57f182853aaa914a88895a4
Reviewed-on: https://gerrit.libreoffice.org/2554
Reviewed-by: Muthu Subramanian K <muthusuba@gmail.com>
Tested-by: Muthu Subramanian K <muthusuba@gmail.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/docsh.hxx | 6 | ||||
-rw-r--r-- | sw/inc/globdoc.hxx | 6 | ||||
-rw-r--r-- | sw/inc/wdocsh.hxx | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/docsh.hxx b/sw/inc/docsh.hxx index 4d660e5c75e7..59e83a3ee04f 100644 --- a/sw/inc/docsh.hxx +++ b/sw/inc/docsh.hxx @@ -234,9 +234,9 @@ public: virtual void FillClass( SvGlobalName * pClassName, sal_uInt32 * pClipFormat, - String * pAppName, - String * pLongUserName, - String * pUserName, + OUString * pAppName, + OUString * pLongUserName, + OUString * pUserName, sal_Int32 nFileFormat, sal_Bool bTemplate = sal_False ) const; diff --git a/sw/inc/globdoc.hxx b/sw/inc/globdoc.hxx index 7e303a292d59..d45412934f0e 100644 --- a/sw/inc/globdoc.hxx +++ b/sw/inc/globdoc.hxx @@ -34,9 +34,9 @@ public: virtual void FillClass( SvGlobalName * pClassName, sal_uInt32 * pClipFormat, - String * pAppName, - String * pLongUserName, - String * pUserName, + OUString * pAppName, + OUString * pLongUserName, + OUString * pUserName, sal_Int32 nFileFormat, sal_Bool bTemplate = sal_False ) const; }; diff --git a/sw/inc/wdocsh.hxx b/sw/inc/wdocsh.hxx index 8c7894b5fb01..eca34a639643 100644 --- a/sw/inc/wdocsh.hxx +++ b/sw/inc/wdocsh.hxx @@ -40,9 +40,9 @@ public: virtual void FillClass( SvGlobalName * pClassName, sal_uInt32 * pClipFormat, - String * pAppName, - String * pLongUserName, - String * pUserName, + OUString * pAppName, + OUString * pLongUserName, + OUString * pUserName, sal_Int32 nFileFormat, sal_Bool bTemplate = sal_False ) const; sal_uInt16 GetSourcePara()const |