[Libreoffice-commits] core.git: sfx2/source

ilhan (via logerrit) logerrit at kemper.freedesktop.org
Thu Mar 26 11:51:42 UTC 2020


 sfx2/source/sidebar/Tools.cxx |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 9e7c6ec4fae6fed40cbbf79a3e6e0b491357a178
Author:     ilhan <ilhanyesil at gmx.de>
AuthorDate: Wed Mar 25 14:01:57 2020 +0100
Commit:     Michael Meeks <michael.meeks at collabora.com>
CommitDate: Thu Mar 26 12:51:08 2020 +0100

    tdf#130310 Load Sidebar Icons for extensions
    
    Changed else statement to include load of extension icons.
    
    Change-Id: I76ad068825ad1406329ca3807b2a919988091cbd
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91051
    Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
    Tested-by: Jenkins

diff --git a/sfx2/source/sidebar/Tools.cxx b/sfx2/source/sidebar/Tools.cxx
index c49177e97a11..7811c9c7c82d 100644
--- a/sfx2/source/sidebar/Tools.cxx
+++ b/sfx2/source/sidebar/Tools.cxx
@@ -51,12 +51,10 @@ Image Tools::GetImage (
 {
     if (rsURL.getLength() > 0)
     {
-        OUString sPath;
-
         if (rsURL.startsWith(".uno:"))
             return vcl::CommandInfoProvider::GetImageForCommand(rsURL, rxFrame);
 
-        else if (rsURL.startsWith("private:graphicrepository/", &sPath))
+        else
             return Image(rsURL);
     }
     return Image();


More information about the Libreoffice-commits mailing list