-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8caa45a
commit 355cd6f
Showing
14 changed files
with
156 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,28 +50,29 @@ AccountSettingsWindow::AccountSettingsWindow(Account* account) | |
if (strlen(fAccountName->Text()) < 1) | ||
fOK->SetEnabled(false); | ||
|
||
BButton* cancel = new BButton("cancelbutton", B_TRANSLATE("Cancel"), new BMessage(B_QUIT_REQUESTED)); | ||
BButton* cancel = | ||
new BButton("cancelbutton", B_TRANSLATE("Cancel"), new BMessage(B_QUIT_REQUESTED)); | ||
|
||
SetDefaultButton(fOK); | ||
|
||
if (!fAccount || fAccount->IsUsingDefaultLocale()) { | ||
fPrefView->Hide(); | ||
} | ||
// clang off | ||
// clang off | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
humdingerb
Author
Member
|
||
BLayoutBuilder::Group<>(this, B_VERTICAL, B_USE_DEFAULT_SPACING) | ||
.SetInsets(B_USE_DEFAULT_SPACING) | ||
.AddGroup(B_VERTICAL, B_USE_DEFAULT_SPACING) | ||
.Add(fAccountName) | ||
.Add(fUseDefault) | ||
.Add(fPrefView) | ||
.End() | ||
.Add(fAccountName) | ||
.Add(fUseDefault) | ||
.Add(fPrefView) | ||
.End() | ||
.AddGroup(B_HORIZONTAL, B_USE_DEFAULT_SPACING) | ||
.AddGlue() | ||
.Add(cancel) | ||
.Add(fOK) | ||
.End() | ||
.AddGlue() | ||
.Add(cancel) | ||
.Add(fOK) | ||
.End() | ||
.End(); | ||
// clang on | ||
// clang on | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
CenterIn(Frame()); | ||
fAccountName->MakeFocus(true); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
@humdingerb the comment isn't correct: clang-format off