aboutsummaryrefslogtreecommitdiffstats
path: root/win/winvnc/VNCServerWin32.cxx
diff options
context:
space:
mode:
authorMadeleine (ThinLinc team) <madni@cendio.se>2024-11-04 13:28:48 +0100
committerMadeleine Nilsson <madni@cendio.se>2024-11-11 11:22:36 +0100
commit260a3e0db5d09be0cb732d1a7ce8e758079e0c11 (patch)
treefde91411f376f038e20834e8031ccc32f3df7506 /win/winvnc/VNCServerWin32.cxx
parent4341fcacd4987b16ebcfa0db176c0ccf287268c4 (diff)
downloadtigervnc-260a3e0db5d09be0cb732d1a7ce8e758079e0c11.tar.gz
tigervnc-260a3e0db5d09be0cb732d1a7ce8e758079e0c11.zip
Standardize on sentence case in titles
The reason for this is to keep a consistency through out the project.
Diffstat (limited to 'win/winvnc/VNCServerWin32.cxx')
-rw-r--r--win/winvnc/VNCServerWin32.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/winvnc/VNCServerWin32.cxx b/win/winvnc/VNCServerWin32.cxx
index c1545ab6..845ee854 100644
--- a/win/winvnc/VNCServerWin32.cxx
+++ b/win/winvnc/VNCServerWin32.cxx
@@ -112,9 +112,9 @@ void VNCServerWin32::processAddressChange() {
return;
// Tool-tip prefix depends on server mode
- const char* prefix = "VNC Server (User):";
+ const char* prefix = "VNC server (user):";
if (isServiceProcess())
- prefix = "VNC Server (Service):";
+ prefix = "VNC server (service):";
// Fetch the list of addresses
std::list<std::string> addrs;
@@ -300,12 +300,12 @@ void VNCServerWin32::processEvent(HANDLE event_) {
switch (command) {
case DisconnectClients:
- // Disconnect all currently active VNC Viewers
+ // Disconnect all currently active VNC viewers
vncServer.closeClients((const char*)commandData);
break;
case AddClient:
- // Make a reverse connection to a VNC Viewer
+ // Make a reverse connection to a VNC viewer
sockMgr.addSocket((network::Socket*)commandData, &vncServer);
break;
case GetClientsInfo: