Webpositive: 80-char limit style fix

This commit is contained in:
John Scipione
2016-08-09 16:08:18 -07:00
parent d216db039f
commit b0a7a75ab1
+2 -1
View File
@@ -502,7 +502,8 @@ BrowserWindow::BrowserWindow(BRect frame, SettingsMessage* appSettings,
BEntry bookmarkBar(&barDir, "Bookmark bar");
entry_ref bookmarkBarRef;
// TODO we could also check if the folder is empty here.
if (bookmarkBar.Exists() && bookmarkBar.GetRef(&bookmarkBarRef) == B_OK) {
if (bookmarkBar.Exists() && bookmarkBar.GetRef(&bookmarkBarRef)
== B_OK) {
fBookmarkBar = new BookmarkBar("Bookmarks", this, &bookmarkBarRef);
fBookmarkBarMenuItem->SetEnabled(true);
} else