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/07/05 05:57:36 UTC

[openoffice] 02/04: Fix the signature for getDebugCFlags() on Windows.

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

commit 9fb0582690d9d9d0deb0497f031fcf03b054b931
Author: Damjan Jovanovic <da...@apache.org>
AuthorDate: Sun Jul 5 05:10:16 2020 +0200

    Fix the signature for getDebugCFlags() on Windows.
    
    Patch by: me
---
 main/site_scons/platform/windows.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/site_scons/platform/windows.py b/main/site_scons/platform/windows.py
index 5e9b10c..6705b64 100644
--- a/main/site_scons/platform/windows.py
+++ b/main/site_scons/platform/windows.py
@@ -215,7 +215,7 @@ class Windows(aooplatform.Platform):
         else:
             return ['-Od']
 
-    def getDebugCFlags(self, compiler, debugging, enableSymbols):
+    def getDebugCFlags(self, compiler, enableSymbols):
         return ['-Zi']
 
     def getLibraryDefs(self, soenv):