summaryrefslogtreecommitdiffstats
path: root/win/vncconfig/vncconfig.cxx
diff options
context:
space:
mode:
authorPeter Åstrand <astrand@cendio.se>2009-02-27 10:12:14 +0000
committerPeter Åstrand <astrand@cendio.se>2009-02-27 10:12:14 +0000
commit4eacc02e123ed1cceb9c8181f16d5ae145fdae35 (patch)
treef3be44634f9e9c3ee32f4ed4cf387e69a8c0bedb /win/vncconfig/vncconfig.cxx
parentb031862497e0603622c498cc4311b2726c223cbb (diff)
downloadtigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.tar.gz
tigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.zip
Rebrand the source as TigerVNC. It is my hope that this patch is
minimal but still complete. The rebranding was done using a script: find trunk -name .svn -prune -o -type f -exec rep.sh \{\} \; pushd trunk svn revert doc/TODO doc/registered-codes.txt doc/ft-protocol-problems.txt doc/rfbtight.tex perl -pi -e 's|tightvnc|tigervnc|g' unix/configure.ac win/configure.ac unix/README With rep.sh looking like: perl -pi -e 's|TightVNC|TigerVNC|g' "$@" perl -pi -e 's|www\.tightvnc\.com/bugs\.html|www\.tigervnc\.org|g' "$@" perl -pi -e 's|www\.tightvnc\.com|www\.tigervnc\.org|g' "$@" perl -pi -e 's|devteam\@tightvnc\.com|tigervnc-devel\@lists\.sourceforge\.net|g' "$@" perl -pi -e 's|TigerVNC Team|TightVNC Team|g' "$@" perl -pi -e 's|TigerVNC Group|TightVNC Group|g' "$@" perl -pi -e 's|TigerVNC protocol|TightVNC protocol|g' "$@" perl -pi -e 's|TigerVNC-specific|TightVNC-specific|g' "$@" perl -pi -e 's|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TigerVNC|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TightVNC|g' "$@" perl -pi -e 's|TigerVNC vendor|TightVNC vendor|g' "$@" perl -pi -e 's|TigerVNC extension|TightVNC extension|g' "$@" perl -pi -e 's|protocolTigerVNC|protocolTightVNC|g' "$@" perl -pi -e 's|TigerVNC additions were|TightVNC additions were|g' "$@" perl -pi -e 's|TigerVNC 1\.2|TightVNC 1\.2|g' "$@" perl -pi -e 's|TigerVNC authentication type|TightVNC authentication type|g' "$@" git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3621 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncconfig/vncconfig.cxx')
-rw-r--r--win/vncconfig/vncconfig.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/vncconfig/vncconfig.cxx b/win/vncconfig/vncconfig.cxx
index 6c9e1c5a..f5b1631f 100644
--- a/win/vncconfig/vncconfig.cxx
+++ b/win/vncconfig/vncconfig.cxx
@@ -110,7 +110,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\\TightVNC\\WinVNC4"));
+ rootKey.createKey(configKey, _T("Software\\TigerVNC\\WinVNC4"));
// Override whatever security it already had (NT only)
bool warnOnChangePassword = false;
@@ -144,7 +144,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, char* cmdLine, int cmdShow) {
// Start a RegConfig thread, to load in existing settings
RegConfigThread config;
- config.start(configKey, _T("Software\\TightVNC\\WinVNC4"));
+ config.start(configKey, _T("Software\\TigerVNC\\WinVNC4"));
// Build the dialog
std::list<PropSheetPage*> pages;