summaryrefslogtreecommitdiff
path: root/include/rsc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-05-08 08:25:00 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-09 07:56:05 +0000
commitb55b7a057f19521ad88fc6a274fcf071b798eb3e (patch)
tree5a8f9a6d7752cb0ae551072d7f6da865a7c256b9 /include/rsc
parent1edcad0daca7f00559fe7cf100438e105623b3eb (diff)
convert SFX_SLOT_INFO to scoped enum
Change-Id: Ib640fc2cfce23bf8ce92ec1549034078123c06aa Reviewed-on: https://gerrit.libreoffice.org/24752 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/rsc')
-rw-r--r--include/rsc/rscsfx.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/rsc/rscsfx.hxx b/include/rsc/rscsfx.hxx
index a3a6304cc123..837187aece06 100644
--- a/include/rsc/rscsfx.hxx
+++ b/include/rsc/rscsfx.hxx
@@ -50,8 +50,10 @@ enum class SfxStyleItem {
// SfxSlotInfo
-#define RSC_SFX_SLOT_INFO_SLOTNAME 0x1
-#define RSC_SFX_SLOT_INFO_HELPTEXT 0x2
+enum class SfxSlotInfo {
+ SlotName = 0x1,
+ HelpText = 0x2
+};
#endif