[haiku-commits] r37759 - haiku/trunk/src/apps/terminal

  • From: stefano.ceccherini@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 26 Jul 2010 16:07:52 +0200 (CEST)

Author: jackburton
Date: 2010-07-26 16:07:52 +0200 (Mon, 26 Jul 2010)
New Revision: 37759
Changeset: http://dev.haiku-os.org/changeset/37759

Modified:
   haiku/trunk/src/apps/terminal/AppearPrefView.cpp
   haiku/trunk/src/apps/terminal/Colors.h
Log:
Better wording.
The colors don't need to be public.
Style.


Modified: haiku/trunk/src/apps/terminal/AppearPrefView.cpp
===================================================================
--- haiku/trunk/src/apps/terminal/AppearPrefView.cpp    2010-07-26 13:56:50 UTC 
(rev 37758)
+++ haiku/trunk/src/apps/terminal/AppearPrefView.cpp    2010-07-26 14:07:52 UTC 
(rev 37759)
@@ -53,7 +53,7 @@
        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 @@
 
        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,

Modified: haiku/trunk/src/apps/terminal/Colors.h
===================================================================
--- haiku/trunk/src/apps/terminal/Colors.h      2010-07-26 13:56:50 UTC (rev 
37758)
+++ haiku/trunk/src/apps/terminal/Colors.h      2010-07-26 14:07:52 UTC (rev 
37759)
@@ -19,9 +19,6 @@
 };
 
 
-extern const rgb_color kBlack;
-extern const rgb_color kWhite;
-
 extern color_schema gCustomSchema;
 extern const color_schema* gPredefinedSchemas[];
 


Other related posts:

  • » [haiku-commits] r37759 - haiku/trunk/src/apps/terminal - stefano . ceccherini