diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-12 21:14:52 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-13 20:10:50 +0100 |
commit | 455404320614f56c2e840ab0c9baf70596bde559 (patch) | |
tree | 8c744984fb1d7962ed3d4addaf17a634a11fdcf9 /sfx2 | |
parent | 55dac4ff40be49dd256e6d3e4b080613259d337b (diff) |
SfxModelessDialog ResId ctor bites the dust
Change-Id: Ia1bc255de0f38c058a3ab622d87af8b346a2075f
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index e464e61a6406..a22f5fb64e8e 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -322,14 +322,6 @@ IMPL_LINK_NOARG(SfxModelessDialog, TimerHdl) return 0; } -SfxModelessDialog::SfxModelessDialog(SfxBindings *pBindinx, - SfxChildWindow *pCW, Window *pParent, const ResId& rResId) - : ModelessDialog(pParent, rResId) -{ - Init(pBindinx, pCW); - SetHelpId(""); -} - SfxModelessDialog::SfxModelessDialog(SfxBindings* pBindinx, SfxChildWindow *pCW, Window *pParent, const OString& rID, const OUString& rUIXMLDescription) @@ -351,16 +343,12 @@ void SfxModelessDialog::Init(SfxBindings *pBindinx, SfxChildWindow *pCW) pImp->aMoveTimer.SetTimeoutHdl(LINK(this,SfxModelessDialog,TimerHdl)); } - - -bool SfxModelessDialog::Notify( NotifyEvent& rEvt ) - /* [Description] If a ModelessDialog is enabled its ViewFrame wil be activated. This is necessary by PluginInFrames. */ - +bool SfxModelessDialog::Notify( NotifyEvent& rEvt ) { if ( rEvt.GetType() == EVENT_GETFOCUS ) { |