summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/mainwindow/mainwindow.cpp')
-rw-r--r--src/server/mainwindow/mainwindow.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp
index e3b7952..aeac347 100644
--- a/src/server/mainwindow/mainwindow.cpp
+++ b/src/server/mainwindow/mainwindow.cpp
@@ -599,14 +599,17 @@ void MainWindow::onButtonStopProjection()
c->setDesiredProjectionSource(0);
c->setProjectionSource(false);
}
- NetworkMessage msg;
- msg.setField(_ID, _VNCCLIENT);
+ NetworkMessage stopVncClientmsg;
+ NetworkMessage stopVncServermsg;
+ stopVncClientmsg.setField(_ID, _VNCCLIENT);
+ stopVncServermsg.setField(_ID, _VNCSERVER);
for (QList<ConnectionFrame*>::iterator it(_clientFrames.begin()); it != _clientFrames.end(); ++it)
{
Client *c = (**it).client();
if (c == NULL)
continue;
- c->sendMessage(msg);
+ c->sendMessage(stopVncClientmsg);
+ c->sendMessage(stopVncServermsg);
}
}