Quick fix. Maybe we should #define some OS_NAME string somewhere, because "BeOS" still appears in many places in litterals.
Not that I didn't like these 4 letters combined, but, well, let's move on... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13553 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -245,7 +245,11 @@ TBeMenu::AddStandardBeMenuItems()
|
|||||||
if (fBarView)
|
if (fBarView)
|
||||||
dragging = fBarView->Dragging();
|
dragging = fBarView->Dragging();
|
||||||
|
|
||||||
|
#ifdef __HAIKU__
|
||||||
|
BMenuItem* item = new BMenuItem("About Haiku", new BMessage(kShowSplash));
|
||||||
|
#else
|
||||||
BMenuItem* item = new BMenuItem("About BeOS", new BMessage(kShowSplash));
|
BMenuItem* item = new BMenuItem("About BeOS", new BMessage(kShowSplash));
|
||||||
|
#endif
|
||||||
item->SetEnabled(!dragging);
|
item->SetEnabled(!dragging);
|
||||||
AddItem(item);
|
AddItem(item);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user