summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-05-04 15:04:21 +0200
committerPierre Ossman <ossman@cendio.se>2015-05-04 15:04:21 +0200
commitbc84faa2f366ed8fa0f44abc7e3e481e0a54859d (patch)
treec8730696a54a13739388c8b6bbd5e5375e6e9a3d
parent5d284e72cc6977dd9bf0ae8851df917f5c5832fb (diff)
downloadtigervnc-bc84faa2f366ed8fa0f44abc7e3e481e0a54859d.tar.gz
tigervnc-bc84faa2f366ed8fa0f44abc7e3e481e0a54859d.zip
Improve TigerVNC branding in WinVNC
Avoids conflicts with the original RealVNC implementation, or any other forks of that code.
-rw-r--r--win/vncconfig/vncconfig.cxx2
-rw-r--r--win/winvnc/VNCServerService.cxx2
-rw-r--r--win/winvnc/winvnc.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/win/vncconfig/vncconfig.cxx b/win/vncconfig/vncconfig.cxx
index 32092986..b1d0eef3 100644
--- a/win/vncconfig/vncconfig.cxx
+++ b/win/vncconfig/vncconfig.cxx
@@ -43,7 +43,7 @@ static LogWriter vlog("main");
#include <vncconfig/Desktop.h>
-TStr rfb::win32::AppName("VNC Config");
+TStr rfb::win32::AppName("TigerVNC Configuration");
#ifdef _DEBUG
diff --git a/win/winvnc/VNCServerService.cxx b/win/winvnc/VNCServerService.cxx
index 481df217..14be6da0 100644
--- a/win/winvnc/VNCServerService.cxx
+++ b/win/winvnc/VNCServerService.cxx
@@ -29,7 +29,7 @@ using namespace winvnc;
using namespace rfb;
using namespace win32;
-const TCHAR* winvnc::VNCServerService::Name = _T("WinVNC4");
+const TCHAR* winvnc::VNCServerService::Name = _T("TigerVNC Server");
VNCServerService::VNCServerService()
: Service(Name)
diff --git a/win/winvnc/winvnc.cxx b/win/winvnc/winvnc.cxx
index b9068657..cb0e8e45 100644
--- a/win/winvnc/winvnc.cxx
+++ b/win/winvnc/winvnc.cxx
@@ -37,7 +37,7 @@ using namespace win32;
static LogWriter vlog("main");
-TStr rfb::win32::AppName("VNC Server");
+TStr rfb::win32::AppName("TigerVNC Server");
extern bool runAsService;
@@ -169,7 +169,7 @@ static void processParams(int argc, char** argv) {
int j = i;
i = argc;
if (rfb::win32::registerService(VNCServerService::Name,
- _T("VNC Server Version 4"),
+ _T("Provides remote access to this machine via the VNC/RFB protocol."),
argc-(j+1), &argv[j+1]))
MsgBoxOrLog("Registered service successfully");
} else if (strcasecmp(argv[i], "-unregister") == 0) {