Fix Web+ for AboutBox API changes.
This commit is contained in:
@@ -93,11 +93,9 @@ BrowserApp::~BrowserApp()
|
|||||||
void
|
void
|
||||||
BrowserApp::AboutRequested()
|
BrowserApp::AboutRequested()
|
||||||
{
|
{
|
||||||
bool needsInit;
|
BAboutWindow window = new BAboutWindow(kApplicationName,
|
||||||
BAboutWindow window = BAboutWindow::GetWindow(kApplicationName,
|
kApplicationSignature);
|
||||||
kApplicationSignature, &needsInit);
|
|
||||||
|
|
||||||
if (needsInit) {
|
|
||||||
// create the about window
|
// create the about window
|
||||||
|
|
||||||
const char* authors[] = {
|
const char* authors[] = {
|
||||||
@@ -120,11 +118,8 @@ BrowserApp::AboutRequested()
|
|||||||
window->AddCopyright(2007, "Haiku, Inc.");
|
window->AddCopyright(2007, "Haiku, Inc.");
|
||||||
window->AddAuthors(authors);
|
window->AddAuthors(authors);
|
||||||
window->AddExtraInfo(aboutText.String());
|
window->AddExtraInfo(aboutText.String());
|
||||||
}
|
|
||||||
|
|
||||||
if (window->IsHidden())
|
|
||||||
window->Show();
|
window->Show();
|
||||||
window->Activate();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user