From a6c9cec4d0dfed8c2d1993e9385e10f56a3de48d Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Thu, 3 Jun 2010 00:08:00 +0000 Subject: [PATCH] Fixed capitalization of demo string. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37003 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/fontdemo/ControlView.cpp | 2 +- src/apps/fontdemo/FontDemoView.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/fontdemo/ControlView.cpp b/src/apps/fontdemo/ControlView.cpp index 7d0e7e4339..657cf18cc0 100644 --- a/src/apps/fontdemo/ControlView.cpp +++ b/src/apps/fontdemo/ControlView.cpp @@ -66,7 +66,7 @@ ControlView::AttachedToWindow() float offsetX = 0; float offsetY = 0; - fTextControl = new BTextControl(rect, "TextInput", "Text:", "Haiku, inc.", NULL); + fTextControl = new BTextControl(rect, "TextInput", "Text:", "Haiku, Inc.", NULL); fTextControl->SetDivider(29.0); fTextControl->SetModificationMessage(new BMessage(TEXT_CHANGED_MSG)); AddChild(fTextControl); diff --git a/src/apps/fontdemo/FontDemoView.cpp b/src/apps/fontdemo/FontDemoView.cpp index a7a0d4aa3b..84c5b9e51d 100644 --- a/src/apps/fontdemo/FontDemoView.cpp +++ b/src/apps/fontdemo/FontDemoView.cpp @@ -36,7 +36,7 @@ FontDemoView::FontDemoView(BRect rect) fShapes(NULL) { SetViewColor(B_TRANSPARENT_COLOR); - SetString("Haiku, inc."); + SetString("Haiku, Inc."); SetFontSize(fFontSize); SetAntialiasing(true);