From 5968b0fedd1e98cc4a2d615da144d5b356b65bb3 Mon Sep 17 00:00:00 2001 From: Bryan Godbolt Date: Tue, 10 Aug 2010 10:33:46 -0600 Subject: [PATCH] changed error message when the udp link cannot be connected --- src/Core.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core.cc b/src/Core.cc index 55d701e151..41a099fab6 100644 --- a/src/Core.cc +++ b/src/Core.cc @@ -115,7 +115,7 @@ Core::Core(int &argc, char* argv[]) : QApplication(argc, argv) { QMessageBox msgBox; msgBox.setIcon(QMessageBox::Critical); - msgBox.setText("Could not connect UDP port. Is already an instance of " + qAppName() + " running?"); + msgBox.setText("Could not connect UDP port. Is an instance of " + qAppName() + "already running?"); msgBox.setInformativeText("You will not be able to receive data via UDP. Please check that you're running the right executable and then re-start " + qAppName() + ". Do you want to close the application?"); msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::Cancel); msgBox.setDefaultButton(QMessageBox::Cancel); -- GitLab