From 79723cb96a95e5f92b54fa93f75fce4ccac1f9ff Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sat, 6 Feb 2010 07:51:40 +0000 Subject: [PATCH] fix build breaks svn path=/trunk/boinc/; revision=20455 --- clientgui/gtk/taskbarex.h | 4 ++-- clientgui/msw/taskbarex.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clientgui/gtk/taskbarex.h b/clientgui/gtk/taskbarex.h index 7f5789678a..382a0e8f00 100644 --- a/clientgui/gtk/taskbarex.h +++ b/clientgui/gtk/taskbarex.h @@ -46,7 +46,7 @@ public: // Accessors bool IsOK() const { return true; } - bool IsIconInstalled() const { return m_statusIcon; } + bool IsIconInstalled() const { return m_pStatusIcon; } // Operations virtual bool SetIcon( @@ -73,7 +73,7 @@ public: bool PopupMenu(wxMenu *menu); // Implementation - static bool IsBalloonsSupported() const { return true; }; + bool IsBalloonsSupported() const { return true; }; // Data members protected: diff --git a/clientgui/msw/taskbarex.h b/clientgui/msw/taskbarex.h index 095a581322..0cde25c076 100644 --- a/clientgui/msw/taskbarex.h +++ b/clientgui/msw/taskbarex.h @@ -79,7 +79,7 @@ public: // Implementation WXHWND CreateTaskBarWindow( wxChar* szWindowTitle ); - static bool IsBalloonsSupported(); + bool IsBalloonsSupported(); long WindowProc( WXHWND hWnd, unsigned int msg, unsigned int wParam, long lParam ); // Data members