aboutsummaryrefslogtreecommitdiffstats
path: root/win/winvnc/STrayIcon.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2023-01-13 12:47:48 +0100
committerPierre Ossman <ossman@cendio.se>2023-02-04 14:03:13 +0100
commitb99daadb05e14e85da6c5e905057e10fc27c0fcf (patch)
tree752e6fea3900b604d44ef6a498539e9a785bf22f /win/winvnc/STrayIcon.h
parente6c5b29f12780303299506fe04f089bc98b80c91 (diff)
downloadtigervnc-b99daadb05e14e85da6c5e905057e10fc27c0fcf.tar.gz
tigervnc-b99daadb05e14e85da6c5e905057e10fc27c0fcf.zip
Use std::string instead of CharArray
Let's use a more common type instead of something homegrown. Should be more familiar to new developers.
Diffstat (limited to 'win/winvnc/STrayIcon.h')
-rw-r--r--win/winvnc/STrayIcon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/winvnc/STrayIcon.h b/win/winvnc/STrayIcon.h
index c0385852..511c3ae2 100644
--- a/win/winvnc/STrayIcon.h
+++ b/win/winvnc/STrayIcon.h
@@ -47,7 +47,7 @@ namespace winvnc {
os::Mutex* lock;
DWORD thread_id;
HWND windowHandle;
- rfb::CharArray toolTip;
+ std::string toolTip;
VNCServerWin32& server;
UINT inactiveIcon;
UINT activeIcon;