summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorPeter Åstrand <astrand@cendio.se>2009-01-16 08:30:47 +0000
committerPeter Åstrand <astrand@cendio.se>2009-01-16 08:30:47 +0000
commit7a83ad1f70016009982cba56f2a094f4937ec433 (patch)
tree9a7ed3ed5e9554437cbfeff5202c204d7b00f7ce /unix
parent051a83a8b1465cf8818a805d197391fbc091f73b (diff)
downloadtigervnc-7a83ad1f70016009982cba56f2a094f4937ec433.tar.gz
tigervnc-7a83ad1f70016009982cba56f2a094f4937ec433.zip
Update to last patch: Use TightVNC: instead of VNC:
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3553 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix')
-rw-r--r--unix/vncviewer/CConn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/vncviewer/CConn.cxx b/unix/vncviewer/CConn.cxx
index 7308eb18..47489daa 100644
--- a/unix/vncviewer/CConn.cxx
+++ b/unix/vncviewer/CConn.cxx
@@ -279,7 +279,7 @@ void CConn::setName(const char* name) {
CharArray windowNameStr(windowName.getData());
if (!windowNameStr.buf[0]) {
windowNameStr.replaceBuf(new char[256]);
- snprintf(windowNameStr.buf, 256, _("VNC: %.240s"), cp.name());
+ snprintf(windowNameStr.buf, 256, _("TightVNC: %.240s"), cp.name());
}
if (viewport) {
@@ -625,7 +625,7 @@ void CConn::recreateViewport()
CharArray windowNameStr(windowName.getData());
if (!windowNameStr.buf[0]) {
windowNameStr.replaceBuf(new char[256]);
- snprintf(windowNameStr.buf, 256, _("VNC: %.240s", cp.name()));
+ snprintf(windowNameStr.buf, 256, _("TightVNC: %.240s", cp.name()));
}
viewport->toplevel(windowNameStr.buf, this, argc, argv);
viewport->setBumpScroll(fullScreen);