diff --git a/src/apps/abouthaiku/AboutHaiku.cpp b/src/apps/abouthaiku/AboutHaiku.cpp index 10ee34ccea..2beb00a279 100644 --- a/src/apps/abouthaiku/AboutHaiku.cpp +++ b/src/apps/abouthaiku/AboutHaiku.cpp @@ -204,7 +204,7 @@ AboutView::AboutView(const BRect &r) fInfoView->AddChild(stringView); stringView->ResizeToPreferred(); - r.OffsetBy(0, labelHeight); + r.OffsetBy(0, textHeight); r.bottom = r.top + textHeight; int32 clockSpeed = get_rounded_cpu_speed(); diff --git a/src/apps/deskbar/BeMenu.cpp b/src/apps/deskbar/BeMenu.cpp index 48a38164f5..3020f9ee81 100644 --- a/src/apps/deskbar/BeMenu.cpp +++ b/src/apps/deskbar/BeMenu.cpp @@ -239,7 +239,9 @@ TBeMenu::AddStandardBeMenuItems() bool dragging=false; if (fBarView) dragging = fBarView->Dragging(); - +#ifdef __HAIKU__ + BMenuItem* item = new BMenuItem("About Haiku", new BMessage(kShowSplash)); +#else #ifdef __HAIKU__ BMenuItem* item = new BMenuItem("About Haiku", new BMessage(kShowSplash)); #else diff --git a/src/apps/magnify/main.cpp b/src/apps/magnify/main.cpp index 7f983f4663..eda2c417c6 100644 --- a/src/apps/magnify/main.cpp +++ b/src/apps/magnify/main.cpp @@ -173,7 +173,7 @@ TApp::ReadyToRun() void TApp::AboutRequested(void) { - (new BAlert("", "Magnify!\n\n(C)2002-2005 Haiku\n(C)1999 Be Inc.\n\nNow with even more features and recompiled for OpenBeOS.", "OK"))->Go(); + (new BAlert("", "Magnify!\n\n(C)2002-2005 Haiku\n(C)1999 Be Inc.\n\nNow with even more features and recompiled for Haiku.", "OK"))->Go(); } //******************************************************************************