mirror of https://github.com/BOINC/boinc.git
- MGR: Fix the application name for both views.
(ANSI/Unicode compatible)(VS/GCC compatible) clientgui/ ViewWork.cpp ViewWorkGrid.cpp svn path=/trunk/boinc/; revision=15584
This commit is contained in:
parent
c8a175ae3c
commit
a065555ca5
|
@ -5616,3 +5616,12 @@ Charlie 9 July 2008
|
|||
client/
|
||||
app_control.C
|
||||
cs_benchmark.C
|
||||
|
||||
Rom 8 July 2008
|
||||
- MGR: Fix the application name for both views.
|
||||
(ANSI/Unicode compatible)(VS/GCC compatible)
|
||||
|
||||
clientgui/
|
||||
ViewWork.cpp
|
||||
ViewWorkGrid.cpp
|
||||
|
||||
|
|
|
@ -761,7 +761,7 @@ void CViewWork::GetDocApplicationName(wxInt32 item, wxString& strBuffer) const {
|
|||
if (state_result->wup->avp->plan_class.size()) {
|
||||
strClassBuffer.Printf(
|
||||
wxT(" (%s)"),
|
||||
state_result->wup->avp->plan_class.c_str()
|
||||
wxString(state_result->wup->avp->plan_class.c_str(), wxConvUTF8).c_str()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -625,7 +625,7 @@ wxInt32 CViewWorkGrid::FormatApplicationName(wxInt32 item, wxString& strBuffer)
|
|||
if (state_result->wup->avp->plan_class.size()) {
|
||||
strClassBuffer.Printf(
|
||||
wxT(" (%s)"),
|
||||
state_result->wup->avp->plan_class.c_str()
|
||||
wxString(state_result->wup->avp->plan_class.c_str(), wxConvUTF8).c_str()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue