* Removed spacing before the links - it looked really weird, especially with other fonts;

I hope mmu_man won't mind.
* Cleaned up our team leads: moved Michael Wilber and Kurtis Kopf to the list of contributors,
  added Waldemar (website), and Jorge (marcom), replaced DarkWyrm with his alter ego Jon.
* Fixed a warning - even though I'm not sure we really need this percentage stuff at all.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20130 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-02-13 08:31:21 +00:00
parent 17ef5dab76
commit ae473111b0

View File

@ -339,15 +339,15 @@ AboutView::AboutView(const BRect &rect)
fCreditsView->SetFontAndColor(be_plain_font, B_FONT_ALL, &darkgrey);
fCreditsView->Insert(
"Bruno G. Albuquerque\n"
"DarkWyrm\n"
"Axel Dörfler\n"
"Phil Greenway\n"
"Philippe Houdoin\n"
"Kurtis Kopf\n"
"Waldemar Kornewald\n"
"Jorge G. Mare\n"
"Marcus Overhagen\n"
"Michael Pfeiffer\n"
"Ingo Weinhold\n"
"Michael Wilber\n"
"Jonathan Yoder\n"
"\n");
fCreditsView->SetFontAndColor(&font, B_FONT_ALL, &haikuOrange);
@ -387,6 +387,7 @@ AboutView::AboutView(const BRect &rect)
"Carwyn Jones\n"
"Vasilis Kaoutsis\n"
"Marcin Konicki\n"
"Kurtis Kopf\n"
"Elad Lahav\n"
"Santiago Lema\n"
"Oscar Lesta\n"
@ -419,6 +420,7 @@ AboutView::AboutView(const BRect &rect)
"Jason Vandermark\n"
"Sandor Vroemisse\n"
"Nathan Whitehorn\n"
"Michael Wilber\n"
"Ulrich Wimboeck\n"
"Gabe Yoder\n"
"Łukasz Zemczak\n"
@ -666,7 +668,7 @@ MemUsageToString(char string[], size_t size)
snprintf(string, size, "%d MB total, %d MB used (%d%%)",
int(systemInfo.max_pages / 256.0f + 0.5f),
int(systemInfo.used_pages / 256.0f + 0.5f),
100 * systemInfo.used_pages / systemInfo.max_pages);
int(100 * systemInfo.used_pages / systemInfo.max_pages));
return string;
}