diff options
author | Noel Grandin <noel@peralex.com> | 2015-02-24 13:21:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-02-25 10:34:26 +0200 |
commit | fcf339ca5f198529a1eaf70e2ec893f75a843558 (patch) | |
tree | 97dd80e34cf4b7371b5ad210181fc5e1b5bce82f /sd | |
parent | 1c4e95db104cd5f732bc41a539a7dc5fd9269ef6 (diff) |
convert SFX_SLOT_ constants to enum class
Change-Id: Icc3aad14d9d0c59c1c1c8f124f0626a9f947b93f
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/PaneShells.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/PaneShells.cxx b/sd/source/ui/dlg/PaneShells.cxx index 59f066d0758a..e22c1cb6fafe 100644 --- a/sd/source/ui/dlg/PaneShells.cxx +++ b/sd/source/ui/dlg/PaneShells.cxx @@ -33,7 +33,7 @@ namespace sd { SFX_SLOTMAP(LeftImpressPaneShell) { - { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } + { 0, 0, 0, SfxSlotMode::NONE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }; SFX_IMPL_INTERFACE(LeftImpressPaneShell, SfxShell) @@ -59,7 +59,7 @@ LeftImpressPaneShell::~LeftImpressPaneShell (void) SFX_SLOTMAP(LeftDrawPaneShell) { - { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } + { 0, 0, 0, SfxSlotMode::NONE, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }; SFX_IMPL_INTERFACE(LeftDrawPaneShell, SfxShell) |