[Libreoffice-commits] core.git: bin/gbuild-to-ide

jan Iversen jani at documentfoundation.org
Tue Jan 10 17:06:54 UTC 2017


 bin/gbuild-to-ide |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e4b6c3b2f9dc579c278b47a777fb57def9e0df1f
Author: jan Iversen <jani at documentfoundation.org>
Date:   Tue Jan 10 18:03:57 2017 +0100

    gbuild-to-ide, solved vs2013 generation problem.
    
    mikekaganski reported a problem with the vs2013 class, due to the
    latest changes. Problem solved:
    
    .name() -> .name
    
    Change-Id: Idb3e063bee93041dd010ed0c0b5bb71ac7efcd57

diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index c1022b4..d4eb5e9 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -831,7 +831,7 @@ class VisualStudioIntegrationGenerator(IdeIntegrationGenerator):
         dependency_libs = {}
         for linked_lib in linked_libs:
             for library_project in library_projects:
-                if library_project.target.name() == linked_lib:
+                if library_project.target.name == linked_lib:
                     dependency_libs[library_project.guid] = library_project
         return dependency_libs
 


More information about the Libreoffice-commits mailing list