diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-04-26 21:20:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-04-27 09:41:56 +0200 |
commit | 962a18691d9aa99555d6f332cc577c1fc256d48b (patch) | |
tree | ce06a1660bda3a43cf8a27d9d35613a5286d550d | |
parent | 27306e0eeee8a22e554f6f5bebccca4f778ae731 (diff) |
aPoint is never consumed so calculations to derive it are moot
Change-Id: I4b00fc1e3bb0f346e688d50d1ea4d1ad4dd56915
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92951
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | include/sfx2/templdlg.hxx | 1 | ||||
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 19 |
2 files changed, 0 insertions, 20 deletions
diff --git a/include/sfx2/templdlg.hxx b/include/sfx2/templdlg.hxx index 8708b32c2e65..3c0f4e2e99d3 100644 --- a/include/sfx2/templdlg.hxx +++ b/include/sfx2/templdlg.hxx @@ -36,7 +36,6 @@ public: virtual void dispose() override; virtual void Resize() override; - virtual void StateChanged( StateChangedType nStateChange ) override; private: std::unique_ptr<SfxTemplateDialog_Impl> pImpl; diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 8ec385bff416..d793608eee53 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -414,25 +414,6 @@ void SfxTemplatePanelControl::Resize() Window::Resize(); } -void SfxTemplatePanelControl::StateChanged( StateChangedType nStateChange ) -{ - if (nStateChange == StateChangedType::InitShow) - { - SfxViewFrame* pFrame = mpBindings->GetDispatcher_Impl()->GetFrame(); - vcl::Window* pEditWin = pFrame->GetViewShell()->GetWindow(); - - Size aSize = pEditWin->GetSizePixel(); - Point aPoint = pEditWin->OutputToScreenPixel( pEditWin->GetPosPixel() ); - aPoint = GetParent()->ScreenToOutputPixel( aPoint ); - Size aWinSize = GetSizePixel(); - aPoint.AdjustX(aSize.Width() - aWinSize.Width() - 20 ); - aPoint.AdjustY(aSize.Height() / 2 - aWinSize.Height() / 2 ); - // SetFloatingPos( aPoint ); - } - - Window::StateChanged( nStateChange ); -} - void StyleTreeListBox_Impl::MakeExpanded_Impl(std::vector<OUString>& rEntries) const { SvTreeListEntry* pEntry; |