From c9d15f8cdbe8d04eea74ac738dc6b3bb081a00f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 7 Apr 2008 09:19:56 +0000 Subject: [PATCH] Applied patch by Duane R. Bailey: * Replaced occurances of "..." by B_UTF8_ELLIPSIS in the apps folder. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24851 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/codycam/CodyCam.cpp | 4 ++-- src/apps/codycam/VideoConsumer.cpp | 10 +++++----- src/apps/mail/MailWindow.cpp | 2 +- src/apps/packageinstaller/PackageView.cpp | 2 +- src/apps/processcontroller/KernelMemoryBarMenuItem.cpp | 2 +- src/apps/processcontroller/NoiseBarMenuItem.cpp | 2 +- src/apps/processcontroller/ProcessController.cpp | 4 ++-- src/apps/terminal/TermWindow.cpp | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/apps/codycam/CodyCam.cpp b/src/apps/codycam/CodyCam.cpp index 6b56a57e6b..a76ade1945 100644 --- a/src/apps/codycam/CodyCam.cpp +++ b/src/apps/codycam/CodyCam.cpp @@ -746,7 +746,7 @@ VideoWindow::_BuildCaptureControls(BView* theView) aFrame.bottom -= kYBuffer; fFtpSetupBox = new BBox(aFrame, "Ftp Setup", B_FOLLOW_ALL, B_WILL_DRAW); - fUploadClientMenu = new BPopUpMenu("Send to..."); + fUploadClientMenu = new BPopUpMenu("Send to" B_UTF8_ELLIPSIS); for (int i = 0; kUploadClient[i]; i++) { BMessage *m = new BMessage(msg_upl_client); m->AddInt32("client", i); @@ -821,7 +821,7 @@ VideoWindow::_BuildCaptureControls(BView* theView) aFrame = fStatusBox->Bounds(); aFrame.InsetBy(kXBuffer, kYBuffer); - fStatusLine = new BStringView(aFrame, "Status Line", "Waiting ..."); + fStatusLine = new BStringView(aFrame, "Status Line", "Waiting" B_UTF8_ELLIPSIS); fStatusBox->AddChild(fStatusLine); } diff --git a/src/apps/codycam/VideoConsumer.cpp b/src/apps/codycam/VideoConsumer.cpp index 51c7c3847b..65f43d38be 100644 --- a/src/apps/codycam/VideoConsumer.cpp +++ b/src/apps/codycam/VideoConsumer.cpp @@ -647,7 +647,7 @@ VideoConsumer::LocalSave(char* filename, BBitmap* bitmap) { BFile* output; - UpdateFtpStatus("Capturing Image ..."); + UpdateFtpStatus("Capturing Image" B_UTF8_ELLIPSIS); /* save a local copy of the image in the requested format */ output = new BFile(); @@ -695,14 +695,14 @@ VideoConsumer::FtpSave(char* filename) ftp->SetPassive(fPassiveFtp); // ftp the local file to our web site - UpdateFtpStatus("Logging in ..."); + UpdateFtpStatus("Logging in" B_UTF8_ELLIPSIS); if (ftp->Connect((string)fServerText, (string)fLoginText, (string)fPasswordText)) { // connect to server - UpdateFtpStatus("Connected ..."); + UpdateFtpStatus("Connected" B_UTF8_ELLIPSIS); if (ftp->ChangeDir((string)fDirectoryText)) { // cd to the desired directory - UpdateFtpStatus("Transmitting ..."); + UpdateFtpStatus("Transmitting" B_UTF8_ELLIPSIS); if (ftp->PutFile((string)filename, (string)"temp")) { // send the file to the server @@ -710,7 +710,7 @@ VideoConsumer::FtpSave(char* filename) ftp->Chmod((string)"temp", (string)"644"); // make it world readable - UpdateFtpStatus("Renaming ..."); + UpdateFtpStatus("Renaming" B_UTF8_ELLIPSIS); if (ftp->MoveFile((string)"temp", (string)filename)) { // change to the desired name diff --git a/src/apps/mail/MailWindow.cpp b/src/apps/mail/MailWindow.cpp index 71b8c3d909..34104429b9 100644 --- a/src/apps/mail/MailWindow.cpp +++ b/src/apps/mail/MailWindow.cpp @@ -2956,7 +2956,7 @@ TMailWindow::_RebuildQueryMenu(bool firstTime) delete item; } - fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries...","???..."), + fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries" B_UTF8_ELLIPSIS,"???" B_UTF8_ELLIPSIS), new BMessage(M_EDIT_QUERIES), 'E', B_SHIFT_KEY)); bool queryItemsAdded = false; diff --git a/src/apps/packageinstaller/PackageView.cpp b/src/apps/packageinstaller/PackageView.cpp index 964af77e3d..2884f18405 100644 --- a/src/apps/packageinstaller/PackageView.cpp +++ b/src/apps/packageinstaller/PackageView.cpp @@ -586,7 +586,7 @@ PackageView::_GroupChanged(int32 index) } fDestination->AddSeparatorItem(); - item = new BMenuItem("Other...", new BMessage(P_MSG_OPEN_PANEL)); + item = new BMenuItem("Other" B_UTF8_ELLIPSIS, new BMessage(P_MSG_OPEN_PANEL)); item->SetTarget(this); fDestination->AddItem(item); diff --git a/src/apps/processcontroller/KernelMemoryBarMenuItem.cpp b/src/apps/processcontroller/KernelMemoryBarMenuItem.cpp index 941002b735..c18d5c325a 100644 --- a/src/apps/processcontroller/KernelMemoryBarMenuItem.cpp +++ b/src/apps/processcontroller/KernelMemoryBarMenuItem.cpp @@ -28,7 +28,7 @@ KernelMemoryBarMenuItem::KernelMemoryBarMenuItem(system_info& systemInfo) - : BMenuItem("System Resources & Caches...", NULL) + : BMenuItem("System Resources & Caches" B_UTF8_ELLIPSIS, NULL) { fLastSum = -1; fGrenze1 = -1; diff --git a/src/apps/processcontroller/NoiseBarMenuItem.cpp b/src/apps/processcontroller/NoiseBarMenuItem.cpp index c0055d2afd..b230c73ee6 100644 --- a/src/apps/processcontroller/NoiseBarMenuItem.cpp +++ b/src/apps/processcontroller/NoiseBarMenuItem.cpp @@ -25,7 +25,7 @@ NoiseBarMenuItem::NoiseBarMenuItem() - : BMenuItem("Gone Teams...", NULL) + : BMenuItem("Gone Teams" B_UTF8_ELLIPSIS, NULL) { fBusyWaiting = -1; fLost = -1; diff --git a/src/apps/processcontroller/ProcessController.cpp b/src/apps/processcontroller/ProcessController.cpp index ba0b8f8b3b..5f0ec42ec1 100644 --- a/src/apps/processcontroller/ProcessController.cpp +++ b/src/apps/processcontroller/ProcessController.cpp @@ -260,7 +260,7 @@ ProcessController::MessageReceived(BMessage *message) if (alert->Go()) kill_team(team); } else { - alert = new BAlert("", "This team is already gone...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); + alert = new BAlert("", "This team is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); alert->Go(); } } @@ -296,7 +296,7 @@ ProcessController::MessageReceived(BMessage *message) } #endif } else { - alert = new BAlert("", "This thread is already gone...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); + alert = new BAlert("", "This thread is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); alert->Go(); } } diff --git a/src/apps/terminal/TermWindow.cpp b/src/apps/terminal/TermWindow.cpp index accdbc10f7..7b81c60f09 100644 --- a/src/apps/terminal/TermWindow.cpp +++ b/src/apps/terminal/TermWindow.cpp @@ -142,7 +142,7 @@ TermWindow::_SetupMenu() fFilemenu->AddItem(new BMenuItem("New Tab", new BMessage(kNewTab), 'T')); fFilemenu->AddSeparatorItem(); - fFilemenu->AddItem(new BMenuItem("Page Setup...", new BMessage(MENU_PAGE_SETUP))); + fFilemenu->AddItem(new BMenuItem("Page Setup" B_UTF8_ELLIPSIS, new BMessage(MENU_PAGE_SETUP))); fFilemenu->AddItem(new BMenuItem("Print", new BMessage(MENU_PRINT),'P')); fFilemenu->AddSeparatorItem(); fFilemenu->AddItem(new BMenuItem("About Terminal" B_UTF8_ELLIPSIS, new BMessage(B_ABOUT_REQUESTED)));