From 31fedbe9f782976b6aa4615b6fd171ed52137c94 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 2 Apr 2013 23:20:15 +0200 Subject: Remove SvtInternalOptions * only Get/SetCurrentTempURL were used, but only for compatibility reasons, to remove old temporary directories (before 2001). Those should be gone today. * MailUIEnabled was false in the xcu file. * SID_MAIL_SENDDOC* are handled some lines further. Change-Id: I482719b0de9df0a77c2fef0bf25ae1fb68926375 Reviewed-on: https://gerrit.libreoffice.org/3180 Reviewed-by: Miklos Vajna Tested-by: Miklos Vajna --- sfx2/inc/sfx2/sfxsids.hrc | 1 - sfx2/sdi/frmslots.sdi | 5 ----- sfx2/sdi/sfx.sdi | 27 --------------------------- sfx2/source/appl/app.cxx | 1 - sfx2/source/appl/appmisc.cxx | 1 - sfx2/source/view/viewsh.cxx | 19 +------------------ 6 files changed, 1 insertion(+), 53 deletions(-) (limited to 'sfx2') diff --git a/sfx2/inc/sfx2/sfxsids.hrc b/sfx2/inc/sfx2/sfxsids.hrc index 51bfd36b1d94..12198b6ed6e6 100644 --- a/sfx2/inc/sfx2/sfxsids.hrc +++ b/sfx2/inc/sfx2/sfxsids.hrc @@ -213,7 +213,6 @@ #define SID_PARTWIN (SID_SFX_START + 1640) #define SID_CRASH (SID_SFX_START + 1645) #define SID_FAIL_ON_WARNING (SID_SFX_START + 1646) -#define SID_MAIL_CHILDWIN (SID_SFX_START + 1647) #define SID_INPUTSTREAM (SID_SFX_START + 1648) #define SID_LOGOUT (SID_SFX_START + 1652) #define SID_JUMPMARK (SID_SFX_START + 1654) diff --git a/sfx2/sdi/frmslots.sdi b/sfx2/sdi/frmslots.sdi index b0aa373f63cf..3a37a1148667 100644 --- a/sfx2/sdi/frmslots.sdi +++ b/sfx2/sdi/frmslots.sdi @@ -61,11 +61,6 @@ interface Window ExecMethod = ChildWindowExecute ; StateMethod = ChildWindowState ; ] - SID_MAIL_CHILDWIN // ole(no) api() - [ - ExecMethod = ChildWindowExecute ; - StateMethod = ChildWindowState ; - ] SID_TIPWINDOW [ ExecMethod = ChildWindowExecute ; diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi index 0ffc66c66398..0fe9cdc2f21e 100644 --- a/sfx2/sdi/sfx.sdi +++ b/sfx2/sdi/sfx.sdi @@ -3849,33 +3849,6 @@ SfxUInt16Item MailReceipt SID_MAIL_NOTIFY GroupId = GID_VIEW; ] -//-------------------------------------------------------------------------- -SfxBoolItem MailWindow SID_MAIL_CHILDWIN - -[ - /* flags: */ - AutoUpdate = TRUE, - Cachable = Cachable, - FastCall = FALSE, - HasCoreId = FALSE, - HasDialog = FALSE, - ReadOnlyDoc = TRUE, - Toggle = FALSE, - Container = TRUE, - RecordAbsolute = FALSE, - RecordPerSet; - Synchron; - - Readonly = FALSE, - - /* config: */ - AccelConfig = FALSE, - MenuConfig = FALSE, - StatusBarConfig = FALSE, - ToolBoxConfig = FALSE, - GroupId = GID_VIEW; -] - //-------------------------------------------------------------------------- SfxVoidItem MatchGroup SID_BASICIDE_MATCHGROUP () diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 49ee2b1699c6..479f9d4479a3 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -113,7 +113,6 @@ #include #include #include -#include #include #include #include diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx index 2cd13360c83f..8008e9071605 100644 --- a/sfx2/source/appl/appmisc.cxx +++ b/sfx2/source/appl/appmisc.cxx @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include diff --git a/sfx2/source/view/viewsh.cxx b/sfx2/source/view/viewsh.cxx index 4760de15ad6a..d5c778e56aa6 100644 --- a/sfx2/source/view/viewsh.cxx +++ b/sfx2/source/view/viewsh.cxx @@ -43,7 +43,6 @@ #include #include #include -#include #include #include @@ -296,7 +295,6 @@ SfxViewShell_Impl::SfxViewShell_Impl(sal_uInt16 const nFlags) //========================================================================= SFX_IMPL_INTERFACE(SfxViewShell,SfxShell,SfxResId(0)) { - SFX_CHILDWINDOW_REGISTRATION( SID_MAIL_CHILDWIN ); } TYPEINIT2(SfxViewShell,SfxShell,SfxListener); @@ -518,11 +516,7 @@ void SfxViewShell::ExecMisc_Impl( SfxRequest &rReq ) WhenSaving, &GetViewFrame()->GetWindow() ) != RET_YES ) break; - if ( SvtInternalOptions().MailUIEnabled() ) - { - GetViewFrame()->SetChildWindow( SID_MAIL_CHILDWIN, sal_True ); - } - else + { SfxMailModel aModel; rtl::OUString aDocType; @@ -837,17 +831,6 @@ void SfxViewShell::GetState_Impl( SfxItemSet &rSet ) break; } - // Mail functions - case SID_MAIL_SENDDOCASPDF: - case SID_MAIL_SENDDOC: - case SID_MAIL_SENDDOCASFORMAT: - { - sal_Bool bEnable = !GetViewFrame()->HasChildWindow( SID_MAIL_CHILDWIN ); - if ( !bEnable ) - rSet.DisableItem( nSID ); - break; - } - // PlugIns running case SID_PLUGINS_ACTIVE: { -- cgit