Add authors back.

This commit is contained in:
John Scipione
2012-11-12 23:57:33 -05:00
parent d1b2e338ef
commit 80d7bf83bd
2 changed files with 15 additions and 0 deletions
@@ -1113,8 +1113,14 @@ ActivityView::MessageReceived(BMessage* message)
switch (message->what) {
case B_ABOUT_REQUESTED:
if (fAboutWindow == NULL) {
const char* authors[] = {
"Axel Dörfler",
NULL
};
fAboutWindow = new BAboutWindow(kAppName, kSignature);
fAboutWindow->AddCopyright(2008, "Haiku, Inc.");
fAboutWindow->AddAuthors(authors);
fAboutWindow->Show();
} else if (fAboutWindow->IsHidden())
fAboutWindow->Show();