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:
Stefano Ceccherini
2010-07-26 14:07:52 +00:00
parent 4ae5a45220
commit 111b8ee836
2 changed files with 3 additions and 5 deletions
+3 -2
View File
@@ -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,
-3
View File
@@ -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[];