summaryrefslogtreecommitdiffstats
path: root/src/gui/connectionWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/connectionWindow.cpp')
-rw-r--r--src/gui/connectionWindow.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/connectionWindow.cpp b/src/gui/connectionWindow.cpp
index ec6db1b..afd7464 100644
--- a/src/gui/connectionWindow.cpp
+++ b/src/gui/connectionWindow.cpp
@@ -384,7 +384,8 @@ bool ConnectionWindow::unlockAllStations() {
bool ConnectionWindow::unprojectStations(QString sname) {
PVSClient* tmpConnection =
PVSConnectionManager::getManager()->getClientFromIp(sname);
- if (tmpConnection && tmpConnection->getVNCConnection()) {
+ if (tmpConnection)
+ {
tmpConnection->sendMessage(PVSCOMMAND, "UNPROJECT", "");
tmpConnection->getConnectionFrame()->setUnproject();
} else {
@@ -400,11 +401,8 @@ bool ConnectionWindow::unprojectAllStations() {
for (std::list<PVSClient*>::iterator it = listAll.begin(); it
!= listAll.end(); it++)
{
- if ((*it)->getVNCConnection())
- {
- (*it)->sendMessage(PVSCOMMAND, "UNPROJECT", "");
- (*it)->getConnectionFrame()->setUnproject();
- }
+ (*it)->sendMessage(PVSCOMMAND, "UNPROJECT", "");
+ (*it)->getConnectionFrame()->setUnproject();
}
return true;
}