diff options
Diffstat (limited to 'common/rfb/VNCServerST.cxx')
-rw-r--r-- | common/rfb/VNCServerST.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/rfb/VNCServerST.cxx b/common/rfb/VNCServerST.cxx index fc2e931b..d36354c8 100644 --- a/common/rfb/VNCServerST.cxx +++ b/common/rfb/VNCServerST.cxx @@ -302,6 +302,16 @@ void VNCServerST::serverCutText(const char* str, int len) } } +void VNCServerST::setName(const char* name_) +{ + name.replaceBuf(strDup(name_)); + std::list<VNCSConnectionST*>::iterator ci, ci_next; + for (ci = clients.begin(); ci != clients.end(); ci = ci_next) { + ci_next = ci; ci_next++; + (*ci)->setDesktopName(name_); + } +} + void VNCServerST::add_changed(const Region& region) { if (comparer != 0) { |