|
From: <ma...@us...> - 2004-02-28 03:03:59
|
Update of /cvsroot/sharedaemon/ui-wx/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10709 Modified Files: SysTray.cpp Log Message: wxWidgets 2.5.1 compatibility: Fixed wxMBConv issues. Index: SysTray.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SysTray.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- SysTray.cpp 28 Dec 2003 05:34:17 -0000 1.13 +++ SysTray.cpp 28 Feb 2004 02:46:46 -0000 1.14 @@ -132,7 +132,7 @@ { wxString ip=wxT("Not Detected"); char interface[10]="eth"; - wxMBConv convert; + wxMBConvUTF8 convert; int index; index=0; int sfd; @@ -197,7 +197,7 @@ char* temp; long int speed; - wxMBConv convert; + wxMBConvUTF8 convert; GtkWidget *label = GTK_BIN (widget)->child; gtk_label_get (GTK_LABEL(label), &temp); @@ -218,7 +218,7 @@ char* temp; long int speed; - wxMBConv convert; + wxMBConvUTF8 convert; GtkWidget *label = GTK_BIN (widget)->child; gtk_label_get (GTK_LABEL(label), &temp); @@ -302,7 +302,7 @@ { //sets gtk objects GtkWidget *status_menu,*item,*down_speed,*up_speed,*info_menu; - wxMBConv convert; + wxMBConvUTF8 convert; wxString upl_speed,dl_speed; wxString temp; int tempspeed; |