* Whitespace cleanup, no functional change.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38883 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2010-10-04 18:47:41 +00:00
parent 45d84067a1
commit 9d95d3fc6e
2 changed files with 8 additions and 8 deletions

View File

@ -152,7 +152,7 @@ NetworkStatus::ReadyToRun()
if (isDeskbarRunning && !isInstalled) {
BAlert* alert = new BAlert("", B_TRANSLATE("Do you want NetworkStatus "
"to live in the Deskbar?"), B_TRANSLATE("Don't"),
"to live in the Deskbar?"), B_TRANSLATE("Don't"),
B_TRANSLATE("Install"), NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
alert->SetShortcut(0, B_ESCAPE);

View File

@ -326,7 +326,7 @@ NetworkStatusView::_ShowConfiguration(BMessage* message)
if (strncmp("Broadcast", name, strlen(name)) == 0)
text = B_TRANSLATE("Broadcast information:\n");
if (strncmp("Netmask", name, strlen(name)) == 0)
text = B_TRANSLATE("Netmask information:\n");
@ -355,16 +355,16 @@ NetworkStatusView::_ShowConfiguration(BMessage* message)
}
text += "\n";
if (strncmp("Address", kInformationEntries[i].label,
if (strncmp("Address", kInformationEntries[i].label,
strlen(kInformationEntries[i].label)) == 0)
text += B_TRANSLATE("Address");
if (strncmp("Broadcast", kInformationEntries[i].label,
if (strncmp("Broadcast", kInformationEntries[i].label,
strlen(kInformationEntries[i].label)) == 0)
text += B_TRANSLATE("Broadcast");
if (strncmp("Netmask", kInformationEntries[i].label,
if (strncmp("Netmask", kInformationEntries[i].label,
strlen(kInformationEntries[i].label)) == 0)
text += B_TRANSLATE("Netmask");
@ -414,7 +414,7 @@ NetworkStatusView::MouseDown(BPoint point)
new BMessage(kMsgOpenNetworkPreferences)));
if (fInDeskbar)
menu->AddItem(new BMenuItem(B_TRANSLATE("Quit"),
menu->AddItem(new BMenuItem(B_TRANSLATE("Quit"),
new BMessage(B_QUIT_REQUESTED)));
menu->SetTargetForItems(this);