diff options
author | Peter Ă…strand <astrand@cendio.se> | 2004-12-30 10:03:00 +0000 |
---|---|---|
committer | Peter Ă…strand <astrand@cendio.se> | 2004-12-30 10:03:00 +0000 |
commit | 9fb4e0e6b9416bce009368cdba5fe0b3710c51e9 (patch) | |
tree | 2b33229a9937a3a763655c08717a5ab25790c703 /vncconfig | |
parent | c616a94b938d5f28dea3e486315a0da90e834754 (diff) | |
download | tigervnc-9fb4e0e6b9416bce009368cdba5fe0b3710c51e9.tar.gz tigervnc-9fb4e0e6b9416bce009368cdba5fe0b3710c51e9.zip |
Tightified sources:
* Changed description in README files.
* Added our copyright.
* The HTTP server presents itself as TightVNC, rather than RealVNC.
* Using registry path Software\TightVNC\WinVNC4
* Updated descriptions in resource files.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@67 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncconfig')
-rw-r--r-- | vncconfig/vncconfig.cxx | 4 | ||||
-rw-r--r-- | vncconfig/vncconfig.exe.manifest | 2 | ||||
-rw-r--r-- | vncconfig/vncconfig.rc | 10 |
3 files changed, 8 insertions, 8 deletions
diff --git a/vncconfig/vncconfig.cxx b/vncconfig/vncconfig.cxx index 2a98dbca..b03f47a9 100644 --- a/vncconfig/vncconfig.cxx +++ b/vncconfig/vncconfig.cxx @@ -113,7 +113,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, char* cmdLine, int cmdShow) { // Create the required configuration registry key RegKey rootKey; - rootKey.createKey(configKey, _T("Software\\RealVNC\\WinVNC4")); + rootKey.createKey(configKey, _T("Software\\TightVNC\\WinVNC4")); // Override whatever security it already had (NT only) bool warnOnChangePassword = false; @@ -147,7 +147,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, char* cmdLine, int cmdShow) { // Start the RegConfig reader, to load in existing settings RegistryReader config; - config.setKey(configKey, _T("Software\\RealVNC\\WinVNC4")); + config.setKey(configKey, _T("Software\\TightVNC\\WinVNC4")); // Build the dialog std::list<PropSheetPage*> pages; diff --git a/vncconfig/vncconfig.exe.manifest b/vncconfig/vncconfig.exe.manifest index 35a4164b..77cb1b9a 100644 --- a/vncconfig/vncconfig.exe.manifest +++ b/vncconfig/vncconfig.exe.manifest @@ -3,7 +3,7 @@ <assemblyIdentity version="4.0.0.26" processorArchitecture="X86" - name="RealVNC.vncconfig.exe" + name="TightVNC.vncconfig.exe" type="win32" /> <description>.NET control deployment tool</description> diff --git a/vncconfig/vncconfig.rc b/vncconfig/vncconfig.rc index e74c8f13..b4018929 100644 --- a/vncconfig/vncconfig.rc +++ b/vncconfig/vncconfig.rc @@ -206,7 +206,7 @@ BEGIN LTEXT ">version<",IDC_VERSION,165,7,77,18 LTEXT ">buildtime<",IDC_BUILDTIME,40,25,202,15 LTEXT ">copyright<",IDC_COPYRIGHT,40,40,202,15 - LTEXT "See http://www.realvnc.com for more information on VNC.", + LTEXT "See http://www.tightvnc.com for more information on TightVNC.", IDC_STATIC,40,55,202,15 END @@ -434,15 +434,15 @@ BEGIN BLOCK "080904b0" BEGIN VALUE "Comments", "\0" - VALUE "CompanyName", "RealVNC Ltd.\0" + VALUE "CompanyName", "Constantin Kaplinsky\0" VALUE "FileDescription", "VNC Server Configuration Applet for Win32\0" VALUE "FileVersion", "4.0\0" VALUE "InternalName", "VNC Config 4.0\0" - VALUE "LegalCopyright", "Copyright © RealVNC Ltd. 2002-2004\0" - VALUE "LegalTrademarks", "RealVNC\0" + VALUE "LegalCopyright", "Copyright (C) 1998-2004 [many holders]\0" + VALUE "LegalTrademarks", "TightVNC\0" VALUE "OriginalFilename", "vncconfig.exe\0" VALUE "PrivateBuild", "\0" - VALUE "ProductName", "VNC Config 4.0\0" + VALUE "ProductName", "TightVNC Config 4.0\0" VALUE "ProductVersion", "4.0\0" VALUE "SpecialBuild", "\0" END |