summaryrefslogtreecommitdiffstats
path: root/extensions/source/propctrlr/pcrcommon.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/pcrcommon.hxx')
-rw-r--r--extensions/source/propctrlr/pcrcommon.hxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/extensions/source/propctrlr/pcrcommon.hxx b/extensions/source/propctrlr/pcrcommon.hxx
index 4d9b68d8e974..f2a8b847c000 100644
--- a/extensions/source/propctrlr/pcrcommon.hxx
+++ b/extensions/source/propctrlr/pcrcommon.hxx
@@ -31,11 +31,13 @@
namespace pcr
{
-
- #define OWN_PROPERTY_ID_INTROSPECTEDOBJECT 0x0010
- #define OWN_PROPERTY_ID_CURRENTPAGE 0x0011
- #define OWN_PROPERTY_ID_CONTROLCONTEXT 0x0012
- #define OWN_PROPERTY_ID_TABBINGMODEL 0x0013
+ enum class OwnPropertyId
+ {
+ INTROSPECTEDOBJECT = 0x0010,
+ CURRENTPAGE = 0x0011,
+ CONTROLCONTEXT = 0x0012,
+ TABBINGMODEL = 0x0013
+ };
//= types
@@ -61,8 +63,8 @@ namespace pcr
class HelpIdUrl
{
public:
- static OString getHelpId( const OUString& _rHelpURL );
- static OUString getHelpURL( const OUString& );
+ static OUString getHelpId( std::u16string_view _rHelpURL );
+ static OUString getHelpURL( std::u16string_view );
};