From 8ba7bedb43ca211d9df2d6051cd44433046147e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 24 Jun 2005 01:56:38 +0000 Subject: [PATCH] Minor cleanup. Since we will (almost) definitely forget some names, shouldn't we say sorry to be on the safe side? :-) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13255 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/abouthaiku/AboutHaiku.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/apps/abouthaiku/AboutHaiku.cpp b/src/apps/abouthaiku/AboutHaiku.cpp index 03e2457cf3..4d9754ca8c 100644 --- a/src/apps/abouthaiku/AboutHaiku.cpp +++ b/src/apps/abouthaiku/AboutHaiku.cpp @@ -100,9 +100,9 @@ AboutWindow::QuitRequested() AboutView::AboutView(const BRect &r) - : BView(r, "aboutview", B_FOLLOW_ALL, B_WILL_DRAW | B_PULSE_NEEDED) + : BView(r, "aboutview", B_FOLLOW_ALL, B_WILL_DRAW | B_PULSE_NEEDED) { - fLogo = BTranslationUtils::GetBitmap('PNG ',"haikulogo.png"); + fLogo = BTranslationUtils::GetBitmap('PNG ', "haikulogo.png"); if (fLogo) { fDrawPoint.x = (225-fLogo->Bounds().Width()) / 2; fDrawPoint.y = 0; @@ -125,7 +125,7 @@ AboutView::AboutView(const BRect &r) BRect r(0, 0, 225, Bounds().bottom); if (fLogo) - r.OffsetBy(0,fLogo->Bounds().Height()); + r.OffsetBy(0, fLogo->Bounds().Height()); fInfoView = new BView(r, "infoview", B_FOLLOW_NONE, B_WILL_DRAW); fInfoView->SetViewColor(235, 235, 235); @@ -333,6 +333,7 @@ AboutView::AboutView(const BRect &r) "Nathan Whitehorn\n" "Ulrich Wimboeck\n" "Gabe Yoder\n" + //"(and probably some more we forgot to mention (sorry!)...)\n" "\n"); fCreditsView->SetFontAndColor(&font);