diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-02-25 14:57:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-02-27 09:04:51 +0000 |
commit | 0107e13069f12cb8a27353e2028bb7513da524e8 (patch) | |
tree | dea3e5a636bcca63e3f7370aa177fbe661994119 /sw/source/uibase/inc/olmenu.hxx | |
parent | e577882476f141d94cede91224805d7a6b009cf7 (diff) |
convert spell menu to .ui
This reverts commit 73f2944618e637762125fabd214b09b4fa50fb90.
Change-Id: Idddd89869d1670cf71e932ccd4dbface30c730d9
Diffstat (limited to 'sw/source/uibase/inc/olmenu.hxx')
-rw-r--r-- | sw/source/uibase/inc/olmenu.hxx | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sw/source/uibase/inc/olmenu.hxx b/sw/source/uibase/inc/olmenu.hxx index af1156b2eb4b..a2077cd3baf8 100644 --- a/sw/source/uibase/inc/olmenu.hxx +++ b/sw/source/uibase/inc/olmenu.hxx @@ -25,6 +25,7 @@ #include <com/sun/star/uno/Sequence.h> #include <rtl/ustring.hxx> +#include <vcl/builder.hxx> #include <vcl/image.hxx> #include <vcl/menu.hxx> @@ -35,7 +36,20 @@ class SwWrtShell; class SW_DLLPUBLIC SwSpellPopup { - ScopedVclPtrInstance<PopupMenu> m_xPopupMenu; + VclBuilder m_aBuilder; + VclPtr<PopupMenu> m_xPopupMenu; + sal_uInt16 m_nIgnoreWordId; + sal_uInt16 m_nAddMenuId; + sal_uInt16 m_nAddId; + sal_uInt16 m_nSpellDialogId; + sal_uInt16 m_nCorrectMenuId; + sal_uInt16 m_nCorrectDialogId; + sal_uInt16 m_nLangSelectionMenuId; + sal_uInt16 m_nLangParaMenuId; + sal_uInt16 m_nRedlineAcceptId; + sal_uInt16 m_nRedlineRejectId; + sal_uInt16 m_nRedlineNextId; + sal_uInt16 m_nRedlinePrevId; SwWrtShell* m_pSh; css::uno::Sequence< css::uno::Reference< css::linguistic2::XDictionary > > m_aDics; css::uno::Reference< css::linguistic2::XSpellAlternatives > m_xSpellAlt; |