From 082f2abce15611d2437d73b0cd04657d06bc3ffb Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Wed, 4 May 2011 18:13:17 +0000 Subject: [PATCH] User taos found another unneeded comma and enforced 80 chars/line on two occasions. Thanks. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41317 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/aboutsystem/AboutSystem.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index 24026bd1a8..30db290a56 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -603,7 +603,8 @@ AboutView::AboutView() 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 @@ AboutView::_CreateCreditsView() // 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 @@ AboutView::_CreateCreditsView() // 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"));