sfx2/source/dialog/backingwindow.cxx | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-)
New commits: commit 096c70435c7f1e0cd1f91933dd9f1aff4eaf1ceb Author: Balazs Varga <[email protected]> AuthorDate: Thu Sep 7 23:17:52 2023 +0200 Commit: Balazs Varga <[email protected]> CommitDate: Fri Sep 8 12:53:22 2023 +0200 Remove external link from start center brand image Change-Id: I601a65c526ba1c3b6e49f02a0401f04379c3e82b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156683 Reviewed-by: Gabor Kelemen <[email protected]> Tested-by: Balazs Varga <[email protected]> diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index a69fd7eac7f7..32a5e28236f6 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -78,7 +78,7 @@ public: OutputDevice& rDevice = pDrawingArea->get_ref_device(); rDevice.SetBackground(Wallpaper(rStyleSettings.GetWindowColor())); - SetPointer(PointerStyle::RefHand); + // SetPointer(PointerStyle::RefHand); } virtual void Resize() override @@ -119,22 +119,6 @@ public: weld::CustomWidgetController::StyleUpdated(); } - virtual bool MouseButtonUp(const MouseEvent& rMEvt) override - { - if (rMEvt.IsLeft()) - { - OUString sURL = officecfg::Office::Common::Menus::ReleaseNotesURL::get(); - // localizeWebserviceURI(sURL); - - Reference<css::system::XSystemShellExecute> const xSystemShellExecute( - css::system::SystemShellExecute::create( - ::comphelper::getProcessComponentContext())); - xSystemShellExecute->execute(sURL, OUString(), - css::system::SystemShellExecuteFlags::URIS_ONLY); - } - return true; - } - virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle&) override { rRenderContext.DrawBitmapEx(Point(0, 0), maBrandImage);
