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:
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; }
};
......
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