The code which realizes full functionality Control Panel,
in a kind existing now, was added.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@467 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/winvnc/STrayIcon.h b/winvnc/STrayIcon.h
index cfd5ec0..ef32eba 100644
--- a/winvnc/STrayIcon.h
+++ b/winvnc/STrayIcon.h
@@ -29,7 +29,7 @@
class STrayIconThread : rfb::Thread {
public:
STrayIconThread(VNCServerWin32& sm, UINT inactiveIcon,
- UINT activeIcon, UINT menu);
+ UINT activeIcon, UINT dis_inactiveIcon, UINT dis_activeIcon, UINT menu);
virtual ~STrayIconThread() {
runTrayIcon = false;
PostThreadMessage(getThreadId(), WM_QUIT, 0, 0);
@@ -49,6 +49,8 @@
VNCServerWin32& server;
UINT inactiveIcon;
UINT activeIcon;
+ UINT dis_inactiveIcon;
+ UINT dis_activeIcon;
UINT menu;
bool runTrayIcon;
};