From: <st...@us...> - 2003-06-16 23:12:31
|
Update of /cvsroot/iaxclient/iaxclient/simpleclient/wx In directory sc8-pr-cvs1:/tmp/cvs-serv22737 Modified Files: wx.cc Log Message: Wxwindows 2.4.0 (but undocumented?) SetLabel is now SetString.. Index: wx.cc =================================================================== RCS file: /cvsroot/iaxclient/iaxclient/simpleclient/wx/wx.cc,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- wx.cc 16 Jun 2003 23:01:29 -0000 1.28 +++ wx.cc 16 Jun 2003 23:12:28 -0000 1.29 @@ -612,6 +612,7 @@ } if (!wxThread::IsMain()) wxMutexGuiEnter(); +#if 0 #ifdef __WXMSW__ // XXX figure out why MSW has this problem figuring out which method // to call... @@ -619,6 +620,8 @@ #else theFrame->callBox->SetLabel(c.callNo, label); #endif +#endif + theFrame->callBox->SetString(c.callNo, label); if((c.state & IAXC_CALL_STATE_SELECTED) && (theFrame->callBox->GetSelection() != c.callNo)) theFrame->callBox->SetSelection(c.callNo); |