diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-27 02:16:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-27 02:16:11 -0600 |
commit | b4426c06a4374b8e1025adce41427f0b1b072721 (patch) | |
tree | b4181220745e6623995f9db4120a781a2455304a /clients/tde/src | |
parent | e21781df2ef6bfdb1a650bab5298b0261c8f7d3c (diff) | |
download | ulab-b4426c06a4374b8e1025adce41427f0b1b072721.tar.gz ulab-b4426c06a4374b8e1025adce41427f0b1b072721.zip |
Fix remaining name references to use the uLab system name
Fix incorrect Debian init scripts and a wrong binary name
Diffstat (limited to 'clients/tde/src')
-rw-r--r-- | clients/tde/src/app/main.cpp | 4 | ||||
-rw-r--r-- | clients/tde/src/app/remotemdi.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clients/tde/src/app/main.cpp b/clients/tde/src/app/main.cpp index 8a5bf80..2db9f4b 100644 --- a/clients/tde/src/app/main.cpp +++ b/clients/tde/src/app/main.cpp @@ -40,12 +40,12 @@ static TDEAboutData about( APP_NAME, I18N_NOOP( APP_PRETTYNAME ), APP_VERSION, I18N_NOOP("Graphical Remote Laboratory Workspaces Client"), TDEAboutData::License_GPL_V2, I18N_NOOP("(C) 2012-2013 Timothy Pearson"), 0, - "http://remotefpga.pearsoncomputing.net/", "kb9vqf@pearsoncomputing.net" ); + "http://ulab.pearsoncomputing.net/", "kb9vqf@pearsoncomputing.net" ); int main(int argc, char *argv[]) { - about.addAuthor("Timothy Pearson", I18N_NOOP("Author, maintainer"), "kb9vqf@pearsoncomputing.net", "http://remotefpga.pearsoncomputing.net/"); + about.addAuthor("Timothy Pearson", I18N_NOOP("Author, maintainer"), "kb9vqf@pearsoncomputing.net", "http://ulab.pearsoncomputing.net/"); TDECmdLineArgs::init(argc, argv, &about); TDECmdLineArgs::addCmdLineOptions(options); diff --git a/clients/tde/src/app/remotemdi.cpp b/clients/tde/src/app/remotemdi.cpp index 46119f2..36ef8dc 100644 --- a/clients/tde/src/app/remotemdi.cpp +++ b/clients/tde/src/app/remotemdi.cpp @@ -356,7 +356,7 @@ void RemoteMDI::connectToServer() { connect(m_rsvSvrSocket, SIGNAL(connectionClosed()), this, SLOT(connectionClosedHandler())); connect(m_rsvSvrSocket, TQT_SIGNAL(statusMessageUpdated(const TQString&)), this, TQT_SLOT(updateStatusBarMainMessage(const TQString&) )); } - m_rsvSvrSocket->setServiceName("remotefpga"); + m_rsvSvrSocket->setServiceName("ulab"); if (m_serverHost != "") { m_rsvSvrSocket->setServerFQDN(m_serverHost); m_rsvSvrSocket->connectToHost(m_serverHost, 4004); |