CtrlLib: Win32 TrayIcon::WindowProc now protected

git-svn-id: svn://ultimatepp.org/upp/trunk@12944 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-04-04 20:52:20 +00:00
parent a633f4c16e
commit d8a04c5705

View file

@ -245,11 +245,13 @@ class TrayIcon : private Ctrl {
NotifyIconNew nid;
HWND hwnd;
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
void Notify(dword msg);
void DoMenu(Bar& bar);
void Message(int type, const char *title, const char *text, int timeout = 10);
protected:
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
public:
virtual void Menu(Bar& bar);
virtual void LeftDown();