Better wording.
The colors don't need to be public. Style. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37759 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -53,7 +53,7 @@ IsFontUsable(const BFont& font)
|
||||
if (firstWidth <= 0)
|
||||
return false;
|
||||
|
||||
for (int c = ' '+1; c <= 0x7e; c++) {
|
||||
for (int c = ' ' + 1; c <= 0x7e; c++) {
|
||||
buffer[0] = c;
|
||||
int width = (int)ceilf(font.StringWidth(buffer));
|
||||
|
||||
@@ -86,7 +86,8 @@ AppearancePrefView::AppearancePrefView(const char* name,
|
||||
|
||||
SetLayout(new BGroupLayout(B_HORIZONTAL));
|
||||
|
||||
fWarnOnExit = new BCheckBox(B_TRANSLATE("Warn on Exit"),
|
||||
fWarnOnExit = new BCheckBox(
|
||||
B_TRANSLATE("Confirm exit if active programs exist"),
|
||||
new BMessage(MSG_WARN_ON_EXIT_CHANGED));
|
||||
|
||||
BMenu* fontMenu = _MakeFontMenu(MSG_HALF_FONT_CHANGED,
|
||||
|
||||
@@ -19,9 +19,6 @@ struct color_schema {
|
||||
};
|
||||
|
||||
|
||||
extern const rgb_color kBlack;
|
||||
extern const rgb_color kWhite;
|
||||
|
||||
extern color_schema gCustomSchema;
|
||||
extern const color_schema* gPredefinedSchemas[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user