summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2011-09-30 12:54:24 +0000
committerPierre Ossman <ossman@cendio.se>2011-09-30 12:54:24 +0000
commit27820baecc16e4eae1ecbd1d6bb59bcea98a1532 (patch)
tree4c33efa5a39c9cbcf7965d713481d13a4477996e
parentc1764bde6139785feb58148d55b513456635768a (diff)
downloadtigervnc-27820baecc16e4eae1ecbd1d6bb59bcea98a1532.tar.gz
tigervnc-27820baecc16e4eae1ecbd1d6bb59bcea98a1532.zip
Put the TigerVNC marker at the end instead of the beginning of the window
title, making it easier to differentiate windows. At the same time remove the translation tags as there is nothing in there that should be translated. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4682 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r--vncviewer/DesktopWindow.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx
index 47109fb8..abd38c92 100644
--- a/vncviewer/DesktopWindow.cxx
+++ b/vncviewer/DesktopWindow.cxx
@@ -131,7 +131,7 @@ void DesktopWindow::setName(const char *name)
CharArray windowNameStr;
windowNameStr.replaceBuf(new char[256]);
- snprintf(windowNameStr.buf, 256, _("TigerVNC: %.240s"), name);
+ snprintf(windowNameStr.buf, 256, "%.240s - TigerVNC", name);
copy_label(windowNameStr.buf);
}