diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-22 15:47:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-22 16:35:26 +0000 |
commit | 28da94a0907ba4d34a7b6db9ae52773d1b39a533 (patch) | |
tree | e9f66e574e67e8b1c62227e9d062a32c3c83958a /cui/source | |
parent | 77637324abc193d831bb4a0fa6f9a91ef3601960 (diff) |
as far as I can see there is no users of SvxShortcutAssignDlg
Change-Id: I624500b149abbcc6f5fb7e16f68b852d8a2c0f29
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 16 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 3 | ||||
-rw-r--r-- | cui/source/inc/acccfg.hxx | 24 |
3 files changed, 0 insertions, 43 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 0968bbf85ce3..00c8c6499ed8 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -1538,20 +1538,4 @@ css::uno::Reference< css::frame::XModel > SfxAcceleratorConfigPage::SearchForAlr return css::uno::Reference< css::frame::XModel >(); } -SvxShortcutAssignDlg::SvxShortcutAssignDlg( Window* pParent, const uno::Reference< frame::XFrame >& rxDocumentFrame, const SfxItemSet& rSet ) - : SfxNoLayoutSingleTabDialog( pParent, rSet, 0 ) -{ - SfxTabPage* pPage = SfxAcceleratorConfigPage::Create( this, rSet ); - pPage->SetFrame( rxDocumentFrame ); - SetTabPage( pPage ); - -} - -SvxShortcutAssignDlg::~SvxShortcutAssignDlg() -{ -} - - -// .uno:InsertSymbol?Symbols:string=bla - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 2090e59d1899..ea8c22d2ab0f 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1593,9 +1593,6 @@ SfxAbstractDialog* AbstractDialogFactory_Impl::CreateSfxDialog( Window* pParent, case SID_EVENTCONFIG : pDlg = new SfxMacroAssignDlg( pParent, _rxDocumentFrame, rAttr ); break; - case RID_SVXPAGE_MACROASSIGN : - pDlg = new SvxShortcutAssignDlg( pParent, _rxDocumentFrame, rAttr ); - break; case RID_SVXDLG_CHARMAP : pDlg = new SvxCharacterMap( pParent, sal_True, &rAttr ); break; diff --git a/cui/source/inc/acccfg.hxx b/cui/source/inc/acccfg.hxx index d6e732697224..550de409c0e3 100644 --- a/cui/source/inc/acccfg.hxx +++ b/cui/source/inc/acccfg.hxx @@ -182,30 +182,6 @@ public: static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet ); }; - -class SfxAcceleratorConfigListBox : public ListBox -{ - void KeyInput( const KeyEvent &rKEvt ); - -public: - - SfxAcceleratorConfigListBox( Window *pParent, ResId &rResId ) : - ListBox( pParent, rResId ) {} - - void ReplaceEntry( sal_uInt16 nPos, const OUString &rStr ); - void ExpandEntry ( sal_uInt16 nPos, const OUString &rStr ); -}; - -class SvxShortcutAssignDlg : public SfxNoLayoutSingleTabDialog -{ -public: - SvxShortcutAssignDlg( - Window* pParent, - const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxDocumentFrame, - const SfxItemSet& rSet ); - virtual ~SvxShortcutAssignDlg(); -}; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |