From 08295933f7f900acd64bbe0668113d1c77b17a79 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 23 Aug 2013 14:04:30 +0200 Subject: convert include/sfx2/minfitem.hxx from String to OUString Change-Id: Idbfe79a6f7f7dbadcd12256b6b99cffd1f23d5d7 --- include/sfx2/minfitem.hxx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'include/sfx2/minfitem.hxx') 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 -- cgit