diff options
author | Peter Åstrand <astrand@cendio.se> | 2004-12-30 11:32:08 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2004-12-30 11:32:08 +0000 |
commit | c81a652be369e931f913044f0f7ef1cd6743e3d4 (patch) | |
tree | 9697a5704839276d2918357f22c8d742d38f09c5 /vncviewer_unix/vncviewer.cxx | |
parent | 3b2cf07211c77bcd9ea987000c1d8b13e1782938 (diff) | |
download | tigervnc-c81a652be369e931f913044f0f7ef1cd6743e3d4.tar.gz tigervnc-c81a652be369e931f913044f0f7ef1cd6743e3d4.zip |
Changed all user-visible strings from colour to color.
Also, the Windows viewer now accepts arguments with both spellings.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@69 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer_unix/vncviewer.cxx')
-rw-r--r-- | vncviewer_unix/vncviewer.cxx | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/vncviewer_unix/vncviewer.cxx b/vncviewer_unix/vncviewer.cxx index 77443e7f..29679b84 100644 --- a/vncviewer_unix/vncviewer.cxx +++ b/vncviewer_unix/vncviewer.cxx @@ -58,13 +58,14 @@ BoolParameter dotWhenNoCursor("DotWhenNoCursor", "invisible cursor", true); BoolParameter autoSelect("AutoSelect", "Auto select pixel format and encoding", true); -BoolParameter fullColour("FullColour", - "Use full colour", true); -AliasParameter fullColor("FullColor", "Alias for FullColour", &fullColour); -IntParameter lowColourLevel("LowColourLevel", - "Colour level to use on slow connections. " - "0 = Very Low (8 colours), 1 = Low (64 colours), " - "2 = Medium (256 colours)", 2); +BoolParameter fullColour("FullColor", + "Use full color", true); +AliasParameter fullColourAlias("FullColour", "Alias for FullColor", &fullColour); +IntParameter lowColourLevel("LowColorLevel", + "Color level to use on slow connections. " + "0 = Very Low (8 colors), 1 = Low (64 colors), " + "2 = Medium (256 colors)", 2); +AliasParameter lowColourLevelAlias("LowColourLevel", "Alias for LowColorLevel", &lowColourLevel); StringParameter preferredEncoding("PreferredEncoding", "Preferred encoding to use (ZRLE, hextile or" " raw) - implies AutoSelect=0", ""); |