[haiku-commits] haiku: hrev52037 - src/apps/aboutsystem

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 26 Jun 2018 18:35:14 -0400 (EDT)

hrev52037 adds 1 changeset to branch 'master'
old head: 5807f2981bcc3a090d37cb0a99643e789403e9e5
new head: 69d3ef8233ed2ea6a09a17e01014bf19e07845f4
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=69d3ef8233ed+%5E5807f2981bcc

----------------------------------------------------------------------------

69d3ef8233ed: AboutSystem: kPublicDomain is not presently used, #if 0 it out.
  
  Fixes the build (sure, GCC, a static unused global constant is worth
  throwing a warning over.)

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52037
Commit:      69d3ef8233ed2ea6a09a17e01014bf19e07845f4
URL:         https://git.haiku-os.org/haiku/commit/?id=69d3ef8233ed
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Tue Jun 26 22:34:39 2018 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+)
src/apps/aboutsystem/AboutSystem.cpp | 2 ++

----------------------------------------------------------------------------

diff --git a/src/apps/aboutsystem/AboutSystem.cpp 
b/src/apps/aboutsystem/AboutSystem.cpp
index 15dc9eee7c..2a0a06f123 100644
--- a/src/apps/aboutsystem/AboutSystem.cpp
+++ b/src/apps/aboutsystem/AboutSystem.cpp
@@ -99,7 +99,9 @@ static const char* kGPLv2 = B_TRANSLATE_MARK("GNU GPL v2");
 static const char* kGPLv3 = B_TRANSLATE_MARK("GNU GPL v3");
 static const char* kLGPLv2 = B_TRANSLATE_MARK("GNU LGPL v2");
 static const char* kLGPLv21 = B_TRANSLATE_MARK("GNU LGPL v2.1");
+#if 0
 static const char* kPublicDomain = B_TRANSLATE_MARK("Public Domain");
+#endif
 #ifdef __INTEL__
 static const char* kIntel2xxxFirmware = B_TRANSLATE_MARK("Intel (2xxx 
firmware)");
 static const char* kIntelFirmware = B_TRANSLATE_MARK("Intel (firmware)");


Other related posts:

  • » [haiku-commits] haiku: hrev52037 - src/apps/aboutsystem - waddlesplash