summaryrefslogtreecommitdiff
path: root/include/vcl/unohelp2.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-05 14:12:32 +0200
committerNoel Grandin <noel@peralex.com>2013-08-12 11:56:40 +0200
commit564f2e4facfc6981aa495306fbc3eba5e7e05c2d (patch)
treed6cc0bd16f8921d88d194e29d96d3360e9232645 /include/vcl/unohelp2.hxx
parent6549516e06cf7f14e0b946d254de481c754bb496 (diff)
convert vcl/unohelp2.hxx from String to OUString
Change-Id: I9e0d4d68135ee740af1239d7070dbb4329dda866
Diffstat (limited to 'include/vcl/unohelp2.hxx')
-rw-r--r--include/vcl/unohelp2.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/unohelp2.hxx b/include/vcl/unohelp2.hxx
index 138ad507d656..6d31e188a2d4 100644
--- a/include/vcl/unohelp2.hxx
+++ b/include/vcl/unohelp2.hxx
@@ -37,13 +37,13 @@ namespace vcl { namespace unohelper {
public ::cppu::OWeakObject
{
private:
- String maText;
+ OUString maText;
public:
- TextDataObject( const String& rText );
+ TextDataObject( const OUString& rText );
~TextDataObject();
- String& GetString() { return maText; }
+ OUString& GetString() { return maText; }
// ::com::sun::star::uno::XInterface
::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
@@ -57,7 +57,7 @@ namespace vcl { namespace unohelper {
/// copies a given string to a given clipboard
static void CopyStringTo(
- const String& rContent,
+ const OUString& rContent,
const ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard >& rxClipboard
);
};