summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-27 13:01:10 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:08 +0200
commitc12b84bfcd02d284268f7ec312e792d83d104a02 (patch)
tree103e4b4bda73d0ccf3502c35a52de024b1cb31de /include
parent1d7eda0060e4d524080df90b9a7f8f60723e4755 (diff)
convert include/sfx2/evntconfig.hxx from String to OUString
Change-Id: I86465e9c7fbf2e53c790862f11a9f40fd75b3e4a
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/evntconf.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/evntconf.hxx b/include/sfx2/evntconf.hxx
index bf8fd6b0877f..f4605759bc61 100644
--- a/include/sfx2/evntconf.hxx
+++ b/include/sfx2/evntconf.hxx
@@ -36,12 +36,12 @@ class SvxMacroTableDtor;
struct SFX2_DLLPUBLIC SfxEventName
{
sal_uInt16 mnId;
- String maEventName;
- String maUIName;
+ OUString maEventName;
+ OUString maUIName;
SfxEventName( sal_uInt16 nId,
- const String& rEventName,
- const String& rUIName )
+ const OUString& rEventName,
+ const OUString& rUIName )
: mnId( nId )
, maEventName( rEventName )
, maUIName( rUIName ) {}
@@ -91,7 +91,7 @@ public:
const SfxEventNamesList& GetEvents() const { return aEventsList;}
void SetEvents( const SfxEventNamesList& rList ) { aEventsList = rList; }
- void AddEvent( const String&, const String&, sal_uInt16 );
+ void AddEvent( const OUString&, const OUString&, sal_uInt16 );
};
// -----------------------------------------------------------------------