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
+2 -2
View File
@@ -70,9 +70,9 @@ private:
bigtime_t interval = kUpdateIntervals[level];
if ((interval % 1000) == 0)
snprintf(fText, sizeof(fText), "%lld secs", interval / 1000);
snprintf(fText, sizeof(fText), "%lld sec.", interval / 1000);
else
snprintf(fText, sizeof(fText), "%lld msecs", interval);
snprintf(fText, sizeof(fText), "%lld ms", interval);
return fText;
}