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
This commit is contained in:
@@ -603,7 +603,8 @@ AboutView::AboutView()
|
|||||||
if (clockSpeed < 1000)
|
if (clockSpeed < 1000)
|
||||||
snprintf(string, sizeof(string), B_TRANSLATE("%ld MHz"), clockSpeed);
|
snprintf(string, sizeof(string), B_TRANSLATE("%ld MHz"), clockSpeed);
|
||||||
else
|
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);
|
BStringView* frequencyView = new BStringView("frequencytext", string);
|
||||||
frequencyView->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT,
|
frequencyView->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT,
|
||||||
@@ -1285,7 +1286,7 @@ AboutView::_CreateCreditsView()
|
|||||||
|
|
||||||
// NetBSD copyrights
|
// NetBSD copyrights
|
||||||
AddCopyrightEntry("The NetBSD Project",
|
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"
|
"Foundation, Inc. and its contributors:\n"
|
||||||
"ftp, tput\n"
|
"ftp, tput\n"
|
||||||
COPYRIGHT_STRING "1996-2008 The NetBSD Foundation, Inc. "
|
COPYRIGHT_STRING "1996-2008 The NetBSD Foundation, Inc. "
|
||||||
@@ -1333,8 +1334,9 @@ AboutView::_CreateCreditsView()
|
|||||||
|
|
||||||
// SGI's GLU implementation copyrights
|
// SGI's GLU implementation copyrights
|
||||||
_AddPackageCredit(PackageCredit("GLU")
|
_AddPackageCredit(PackageCredit("GLU")
|
||||||
.SetCopyright(B_TRANSLATE(COPYRIGHT_STRING "1991-2000 Silicon Graphics, "
|
.SetCopyright(B_TRANSLATE(COPYRIGHT_STRING "1991-2000 "
|
||||||
"Inc. SGI's Software FreeB license. All rights reserved."))
|
"Silicon Graphics, Inc. SGI's Software FreeB license. "
|
||||||
|
"All rights reserved."))
|
||||||
.SetLicense("SGI Free B")
|
.SetLicense("SGI Free B")
|
||||||
.SetURL("http://www.sgi.com/products/software/opengl"));
|
.SetURL("http://www.sgi.com/products/software/opengl"));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user