Kaydet (Commit) e7cd49eb authored tarafından Noel Grandin's avatar Noel Grandin

convert include/sfx2/event.hxx from String to OUString

Change-Id: I58a6109b598599daa8af60d0c2b3df54b3c0bb8a
üst c12b84bf
...@@ -89,29 +89,29 @@ public: ...@@ -89,29 +89,29 @@ public:
class SfxNamedHint : public SfxHint class SfxNamedHint : public SfxHint
{ {
String _aEventName; OUString _aEventName;
SfxObjectShell* _pObjShell; SfxObjectShell* _pObjShell;
String _aArgs; OUString _aArgs;
public: public:
TYPEINFO(); TYPEINFO();
SfxNamedHint( const String& rName, SfxNamedHint( const OUString& rName,
const String& rArgs, const OUString& rArgs,
SfxObjectShell *pObj = 0 ) SfxObjectShell *pObj = 0 )
: _aEventName( rName ), : _aEventName( rName ),
_pObjShell( pObj), _pObjShell( pObj),
_aArgs( rArgs ) _aArgs( rArgs )
{} {}
SfxNamedHint( const String& rName, SfxNamedHint( const OUString& rName,
SfxObjectShell *pObj = 0 ) SfxObjectShell *pObj = 0 )
: _aEventName( rName ), : _aEventName( rName ),
_pObjShell( pObj ) _pObjShell( pObj )
{} {}
const String& GetArgs() const { return _aArgs;} const OUString& GetArgs() const { return _aArgs;}
const String& GetName() const { return _aEventName; } const OUString& GetName() const { return _aEventName; }
SfxObjectShell* GetObjShell() const { return _pObjShell; } SfxObjectShell* GetObjShell() const { return _pObjShell; }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment