summaryrefslogtreecommitdiff
path: root/sfx2/source/dialog/sfxdlg.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-07-06 12:36:09 +0000
committerOliver Bolte <obo@openoffice.org>2004-07-06 12:36:09 +0000
commit81340bd3300480bda8917275e445aa4f154a171d (patch)
tree00c5413a6060ac3df29801ec96d145563d898957 /sfx2/source/dialog/sfxdlg.cxx
parent715b590e8753fac3083e15a13f14270f15162050 (diff)
INTEGRATION: CWS docking1 (1.2.32); FILE MERGED
2004/06/30 12:52:16 toconnor 1.2.32.1: #i20055# - allow accelerator tab page to be created via SfxAbstractDialogFactory and change dimensions to fit new Customize dialog
Diffstat (limited to 'sfx2/source/dialog/sfxdlg.cxx')
-rw-r--r--sfx2/source/dialog/sfxdlg.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/sfx2/source/dialog/sfxdlg.cxx b/sfx2/source/dialog/sfxdlg.cxx
index 631aa346f4c6..30d88bff07f6 100644
--- a/sfx2/source/dialog/sfxdlg.cxx
+++ b/sfx2/source/dialog/sfxdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sfxdlg.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2004-01-05 11:40:01 $
+ * last change: $Author: obo $ $Date: 2004-07-06 13:36:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,8 +64,15 @@
#include <osl/module.hxx>
#include <tools/string.hxx>
+#include "cfg.hxx"
SfxAbstractDialogFactory* SfxAbstractDialogFactory::Create()
{
return (SfxAbstractDialogFactory*) VclAbstractDialogFactory::Create();
}
+
+SfxTabPage* SfxAbstractDialogFactory::CreateSfxAcceleratorConfigPage(
+ Window *pParent, const SfxItemSet& rSet )
+{
+ return new SfxAcceleratorConfigPage( pParent, rSet );
+}