fix build break

svn path=/trunk/boinc/; revision=20499
This commit is contained in:
Rom Walton 2010-02-10 18:47:19 +00:00
parent d9de67e97f
commit f43164ba99
1 changed files with 4 additions and 4 deletions

View File

@ -84,7 +84,7 @@ wxTaskBarIconEx::wxTaskBarIconEx()
g_pStatusIcon = NULL; g_pStatusIcon = NULL;
g_pNotification = NULL; g_pNotification = NULL;
notify_init(wxTaskBarExWindow); notify_init((const char*)wxString(wxTaskBarExWindow).mb_str());
} }
wxTaskBarIconEx::wxTaskBarIconEx( wxChar* szWindowTitle, wxInt32 iTaskbarID ) wxTaskBarIconEx::wxTaskBarIconEx( wxChar* szWindowTitle, wxInt32 iTaskbarID )
@ -94,7 +94,7 @@ wxTaskBarIconEx::wxTaskBarIconEx( wxChar* szWindowTitle, wxInt32 iTaskbarID )
g_pStatusIcon = NULL; g_pStatusIcon = NULL;
g_pNotification = NULL; g_pNotification = NULL;
notify_init((char*)szWindowTitle); notify_init((const char*)wxString(szWindowTitle).mb_str());
} }
wxTaskBarIconEx::~wxTaskBarIconEx() wxTaskBarIconEx::~wxTaskBarIconEx()
@ -186,7 +186,7 @@ bool wxTaskBarIconEx::SetBalloon(const wxIcon& icon, const wxString title, const
desired_icon, desired_icon,
g_pStatusIcon g_pStatusIcon
); );
g_signal_connect(g_pNotification, "closed", NOTIFY_ACTION_CALLBACK(statis_icon_notification_closed), this); g_signal_connect(g_pNotification, "closed", G_CALLBACK(statis_icon_notification_closed), this);
} }
else else
{ {
@ -198,7 +198,7 @@ bool wxTaskBarIconEx::SetBalloon(const wxIcon& icon, const wxString title, const
); );
} }
return notify_notification_show(m_pNotification, NULL); return notify_notification_show(g_pNotification, NULL);
} }
bool wxTaskBarIconEx::QueueBalloon(const wxIcon& icon, const wxString title, const wxString message, unsigned int iconballoon) bool wxTaskBarIconEx::QueueBalloon(const wxIcon& icon, const wxString title, const wxString message, unsigned int iconballoon)