summaryrefslogtreecommitdiff
path: root/include/sfx2/event.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-27 13:13:19 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:08 +0200
commite7cd49ebb08a839161429519d6a0e0eda4839d41 (patch)
treee2fef70db4129954c0e9c16c7ad0a9dd8c2440a5 /include/sfx2/event.hxx
parentc12b84bfcd02d284268f7ec312e792d83d104a02 (diff)
convert include/sfx2/event.hxx from String to OUString
Change-Id: I58a6109b598599daa8af60d0c2b3df54b3c0bb8a
Diffstat (limited to 'include/sfx2/event.hxx')
-rw-r--r--include/sfx2/event.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/sfx2/event.hxx b/include/sfx2/event.hxx
index 699318557785..67fbc847bceb 100644
--- a/include/sfx2/event.hxx
+++ b/include/sfx2/event.hxx
@@ -89,29 +89,29 @@ public:
class SfxNamedHint : public SfxHint
{
- String _aEventName;
+ OUString _aEventName;
SfxObjectShell* _pObjShell;
- String _aArgs;
+ OUString _aArgs;
public:
TYPEINFO();
- SfxNamedHint( const String& rName,
- const String& rArgs,
+ SfxNamedHint( const OUString& rName,
+ const OUString& rArgs,
SfxObjectShell *pObj = 0 )
: _aEventName( rName ),
_pObjShell( pObj),
_aArgs( rArgs )
{}
- SfxNamedHint( const String& rName,
+ SfxNamedHint( const OUString& rName,
SfxObjectShell *pObj = 0 )
: _aEventName( rName ),
_pObjShell( pObj )
{}
- const String& GetArgs() const { return _aArgs;}
- const String& GetName() const { return _aEventName; }
+ const OUString& GetArgs() const { return _aArgs;}
+ const OUString& GetName() const { return _aEventName; }
SfxObjectShell* GetObjShell() const { return _pObjShell; }
};