mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5432
This commit is contained in:
parent
443dd2147d
commit
92add241b4
|
@ -24770,7 +24770,13 @@ Rom 14 Feb 2005
|
|||
gui_rpc_server.C
|
||||
|
||||
David 15 Feb 2005
|
||||
- un-break the anonymous platform mechanism
|
||||
- Fix the anonymous platform mechanism
|
||||
|
||||
client/
|
||||
app_start.C
|
||||
|
||||
David 15 Feb 2005
|
||||
- BOINC manager: on Unix, don't ask whether to show remote graphics
|
||||
|
||||
clientgui/
|
||||
ViewWork.cpp
|
||||
|
|
|
@ -412,22 +412,22 @@ void CViewWork::OnTaskLinkClicked( const wxHtmlLinkInfo& link )
|
|||
iProjectIndex = m_pListPane->GetFirstSelected();
|
||||
pDoc->GetConnectedComputerName( strMachineName );
|
||||
|
||||
if ( !strMachineName.empty() )
|
||||
{
|
||||
#ifdef _WIN32
|
||||
if ( !strMachineName.empty() ) {
|
||||
iAnswer = wxMessageBox(
|
||||
_("Are you sure you wish to display graphics on a remote machine?"),
|
||||
_("Show graphics"),
|
||||
wxYES_NO | wxICON_QUESTION,
|
||||
this
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
iAnswer = wxYES;
|
||||
}
|
||||
#else
|
||||
iAnswer = wxYES;
|
||||
#endif
|
||||
|
||||
if ( wxYES == iAnswer )
|
||||
{
|
||||
if ( wxYES == iAnswer ) {
|
||||
int foo = iProjectIndex;
|
||||
pDoc->WorkShowGraphics(
|
||||
foo,
|
||||
|
|
Loading…
Reference in New Issue