* Fix missing colon.

* Use sentence case in PrimaryPartitionEditor.
* Fixed double spacing in InitializeBFSEditor view. Since we are going
  to embed it anyway, don't put some extra spacing arround it.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35144 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich 2010-01-18 20:41:22 +00:00
parent 4e7bc18cbc
commit 0e56556dcd
2 changed files with 4 additions and 6 deletions

View File

@ -98,7 +98,7 @@ InitializeBFSEditor::_CreateViewControls()
// TODO find out what is the max length for this specific FS partition name
fNameTC->TextView()->SetMaxBytes(31);
BPopUpMenu* blocksizeMenu = new BPopUpMenu("Blocksize:");
BPopUpMenu* blocksizeMenu = new BPopUpMenu("blocksize");
BMessage* message = new BMessage(MSG_BLOCK_SIZE);
message->AddString("size", "1024");
blocksizeMenu->AddItem(new BMenuItem("1024 (Mostly small files)",
@ -115,7 +115,7 @@ InitializeBFSEditor::_CreateViewControls()
blocksizeMenu->AddItem(new BMenuItem("8192 (Mostly large files)",
message));
fBlockSizeMF = new BMenuField("Blocksize", blocksizeMenu, NULL);
fBlockSizeMF = new BMenuField("Blocksize:", blocksizeMenu, NULL);
defaultItem->SetMarked(true);
fUseIndicesCB = new BCheckBox("Enable query support", NULL);
@ -139,7 +139,5 @@ InitializeBFSEditor::_CreateViewControls()
// row 3
.Add(fUseIndicesCB, 0, 2, 2)
.SetInsets(spacing, spacing, spacing, spacing)
;
}

View File

@ -19,8 +19,8 @@ PrimaryPartitionEditor::PrimaryPartitionEditor()
fActiveCB(NULL),
fParameters(NULL)
{
fActiveCB = new BCheckBox("active", "Active Partition", NULL);
fView = BGroupLayoutBuilder(B_VERTICAL, 4)
fActiveCB = new BCheckBox("active", "Active partition", NULL);
fView = BGroupLayoutBuilder(B_VERTICAL)
.Add(fActiveCB)
;
}