[haiku-commits] r41317 - haiku/trunk/src/apps/aboutsystem

  • From: humdingerb@xxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 4 May 2011 20:13:18 +0200 (CEST)

Author: humdinger
Date: 2011-05-04 20:13:17 +0200 (Wed, 04 May 2011)
New Revision: 41317
Changeset: https://dev.haiku-os.org/changeset/41317

Modified:
   haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
Log:
User taos found another unneeded comma and enforced 80 chars/line on two 
occasions. Thanks.

Modified: haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
===================================================================
--- haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2011-05-04 08:28:04 UTC 
(rev 41316)
+++ haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2011-05-04 18:13:17 UTC 
(rev 41317)
@@ -603,7 +603,8 @@
        if (clockSpeed < 1000)
                snprintf(string, sizeof(string), B_TRANSLATE("%ld MHz"), 
clockSpeed);
        else
-               snprintf(string, sizeof(string), B_TRANSLATE("%.2f GHz"), 
clockSpeed / 1000.0f);
+               snprintf(string, sizeof(string), B_TRANSLATE("%.2f GHz"),
+                       clockSpeed / 1000.0f);
 
        BStringView* frequencyView = new BStringView("frequencytext", string);
        frequencyView->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT,
@@ -1285,7 +1286,7 @@
 
        // NetBSD copyrights
        AddCopyrightEntry("The NetBSD Project",
-               B_TRANSLATE("Contains software developed by the NetBSD, "
+               B_TRANSLATE("Contains software developed by the NetBSD "
                "Foundation, Inc. and its contributors:\n"
                "ftp, tput\n"
                COPYRIGHT_STRING "1996-2008 The NetBSD Foundation, Inc. "
@@ -1333,8 +1334,9 @@
 
        // SGI's GLU implementation copyrights
        _AddPackageCredit(PackageCredit("GLU")
-               .SetCopyright(B_TRANSLATE(COPYRIGHT_STRING "1991-2000 Silicon 
Graphics, "
-                       "Inc. SGI's Software FreeB license. All rights 
reserved."))
+               .SetCopyright(B_TRANSLATE(COPYRIGHT_STRING "1991-2000 "
+                       "Silicon Graphics, Inc. SGI's Software FreeB license. "
+                       "All rights reserved."))
                .SetLicense("SGI Free B")
                .SetURL("http://www.sgi.com/products/software/opengl";));
 


Other related posts:

  • » [haiku-commits] r41317 - haiku/trunk/src/apps/aboutsystem - humdingerb