Patch by Humdinger:

Updated Haiku apps to use sentence-case. What a huge undertaking...
The files where I had to apply the patch manually (for mysterious
reasons) have also gotten a whitespace cleanup. I've proof-read
everything so hopefully there should be no problems.

This should be the final part of #5169.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35049 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2010-01-13 14:33:35 +00:00
parent 2865e5a048
commit 7974d3dcf3
141 changed files with 1328 additions and 1326 deletions
+3 -3
View File
@@ -978,7 +978,7 @@ ActivityView::MouseDown(BPoint where)
BPopUpMenu *menu = new BPopUpMenu(B_EMPTY_STRING, false, false);
menu->SetFont(be_plain_font);
BMenu* additionalMenu = new BMenu("Additional Items");
BMenu* additionalMenu = new BMenu("Additional items");
additionalMenu->SetFont(be_plain_font);
SystemInfo info;
@@ -1005,7 +1005,7 @@ ActivityView::MouseDown(BPoint where)
menu->AddItem(new BMenuItem(additionalMenu));
menu->AddSeparatorItem();
menu->AddItem(new BMenuItem(fShowLegend ? "Hide Legend" : "Show Legend",
menu->AddItem(new BMenuItem(fShowLegend ? "Hide legend" : "Show legend",
new BMessage(kMsgToggleLegend)));
menu->SetTargetForItems(this);
@@ -1016,7 +1016,7 @@ ActivityView::MouseDown(BPoint where)
menu->AddSeparatorItem();
BMessage* message = new BMessage(kMsgRemoveView);
message->AddPointer("view", this);
menu->AddItem(item = new BMenuItem("Remove View", message));
menu->AddItem(item = new BMenuItem("Remove graph", message));
item->SetTarget(window);
}