[Libreoffice-commits] core.git: Branch 'distro/collabora/co-2021' - sfx2/source

Szymon KÅ‚os (via logerrit) logerrit at kemper.freedesktop.org
Sun Jun 13 12:14:13 UTC 2021


 sfx2/source/sidebar/SidebarDockingWindow.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d68dff90d5f94489bb8405eadfb90bfbb4783a4d
Author:     Szymon Kłos <szymon.klos at collabora.com>
AuthorDate: Sun Jun 13 11:58:31 2021 +0200
Commit:     Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Sun Jun 13 14:13:39 2021 +0200

    Fix warning abo: unused pNotifier in SidebarDockingWindow
    
    Change-Id: Ic3880cfbebe67a4e8256dc868eeb176617333a31
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117094
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice at gmail.com>
    Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>

diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx b/sfx2/source/sidebar/SidebarDockingWindow.cxx
index c40cc06a952b..f536165255d8 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.cxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx
@@ -81,7 +81,7 @@ void SidebarDockingWindow::dispose()
 void SidebarDockingWindow::LOKClose()
 {
     assert(comphelper::LibreOfficeKit::isActive());
-    if (const vcl::ILibreOfficeKitNotifier* pNotifier = GetLOKNotifier())
+    if (GetLOKNotifier())
         ReleaseLOKNotifier();
 }
 


More information about the Libreoffice-commits mailing list