diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-23 14:04:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-29 09:30:04 +0200 |
commit | 08295933f7f900acd64bbe0668113d1c77b17a79 (patch) | |
tree | b31bbeeea78510369d9331b6b3376489932fd31d /include/sfx2/minfitem.hxx | |
parent | 15b9cf2802f1163f43563d4ba2d19942356fa5cc (diff) |
convert include/sfx2/minfitem.hxx from String to OUString
Change-Id: Idbfe79a6f7f7dbadcd12256b6b99cffd1f23d5d7
Diffstat (limited to 'include/sfx2/minfitem.hxx')
-rw-r--r-- | include/sfx2/minfitem.hxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/sfx2/minfitem.hxx b/include/sfx2/minfitem.hxx index fb06ffc1e979..f08bb68824e2 100644 --- a/include/sfx2/minfitem.hxx +++ b/include/sfx2/minfitem.hxx @@ -28,43 +28,43 @@ class BasicManager; class SFX2_DLLPUBLIC SfxMacroInfoItem: public SfxPoolItem { const BasicManager* pBasicManager; - String aLibName; - String aModuleName; - String aMethodName; - String aCommentText; + OUString aLibName; + OUString aModuleName; + OUString aMethodName; + OUString aCommentText; public: TYPEINFO(); SfxMacroInfoItem( sal_uInt16 nWhich, const BasicManager* pMgr, - const String &rLibName, - const String &rModuleName, - const String &rMethodName, - const String &rComment); + const OUString &rLibName, + const OUString &rModuleName, + const OUString &rMethodName, + const OUString &rComment); SfxMacroInfoItem( const SfxMacroInfoItem& ); virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const; virtual int operator==( const SfxPoolItem& ) const; - String GetComment() const + OUString GetComment() const { return aCommentText; } - void SetComment( const String& r ) + void SetComment( const OUString& r ) { aCommentText = r; } - String GetMethod() const + OUString GetMethod() const { return aMethodName; } - void SetMethod( const String& r ) + void SetMethod( const OUString& r ) { aMethodName = r; } - String GetModule() const + OUString GetModule() const { return aModuleName; } - void SetModule( const String& r ) + void SetModule( const OUString& r ) { aModuleName = r; } - String GetLib() const + OUString GetLib() const { return aLibName; } - void SetLib( const String& r ) + void SetLib( const OUString& r ) { aLibName = r; } const BasicManager* GetBasicManager() const { return pBasicManager; } - String GetQualifiedName() const; + OUString GetQualifiedName() const; }; #endif |