You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2020/02/09 11:20:23 UTC

[openoffice] branch scons-build updated: Fix SetTargetTypeGUI().

This is an automated email from the ASF dual-hosted git repository.

damjan pushed a commit to branch scons-build
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/scons-build by this push:
     new 8675570  Fix SetTargetTypeGUI().
8675570 is described below

commit 8675570adb178e787f841e35c9ac67712b6b2bc8
Author: Damjan Jovanovic <da...@apache.org>
AuthorDate: Sun Feb 9 13:19:48 2020 +0200

    Fix SetTargetTypeGUI().
    
    Patch by: me
---
 .../src/main/java/org/apache/openoffice/gotoSCons/SConsConverter.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gotoSCons/src/main/java/org/apache/openoffice/gotoSCons/SConsConverter.java b/gotoSCons/src/main/java/org/apache/openoffice/gotoSCons/SConsConverter.java
index 4b51d67..c1c8c29 100644
--- a/gotoSCons/src/main/java/org/apache/openoffice/gotoSCons/SConsConverter.java
+++ b/gotoSCons/src/main/java/org/apache/openoffice/gotoSCons/SConsConverter.java
@@ -150,7 +150,7 @@ public class SConsConverter {
         out.println(String.format(")"));
         
         if (exe.isTargetTypeSet()) {
-            out.println(String.format("%s.SetTargetTypeGUI()",
+            out.println(String.format("%s.SetTargetTypeGUI(%s)",
                     exe.getName(),
                     exe.isIsTargetTypeGUI() ? "True" : "False"));
         }