mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5605
This commit is contained in:
parent
5dd28dd791
commit
14cc2debd6
|
@ -525,8 +525,10 @@ bool CMainFrame::RestoreState()
|
||||||
pConfig->Read(wxT("Height"), &iHeight, 600);
|
pConfig->Read(wxT("Height"), &iHeight, 600);
|
||||||
|
|
||||||
SetSize( -1, -1, iWidth, iHeight );
|
SetSize( -1, -1, iWidth, iHeight );
|
||||||
|
#if defined(__WXMSW__) || defined(__WXMAC__)
|
||||||
Iconize( bWindowIconized );
|
Iconize( bWindowIconized );
|
||||||
Maximize( bWindowMaximized );
|
Maximize( bWindowMaximized );
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -315,9 +315,9 @@ AM_OPTIONS_WXCONFIG
|
||||||
dnl check for wxWidgets
|
dnl check for wxWidgets
|
||||||
|
|
||||||
if test "${enable_debug}" = yes ; then
|
if test "${enable_debug}" = yes ; then
|
||||||
AM_PATH_WXCONFIG(2.3.4, wxWin=1, --debug)
|
AM_PATH_WXCONFIG([2.3.4], [wxWin=1], [wxWin=0], --debug)
|
||||||
else
|
else
|
||||||
AM_PATH_WXCONFIG(2.3.4, wxWin=1)
|
AM_PATH_WXCONFIG([2.3.4], [wxWin=1], [wxWin=0])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ( test "${enable_client}" = yes ) && ( test "$wxWin" != 1 ); then
|
if ( test "${enable_client}" = yes ) && ( test "$wxWin" != 1 ); then
|
||||||
|
@ -413,7 +413,7 @@ AC_SUBST(CLIENTLIBS)
|
||||||
CLIENTGUIFLAGS="-DNOCLIPBOARD -DNOTASKBAR"
|
CLIENTGUIFLAGS="-DNOCLIPBOARD -DNOTASKBAR"
|
||||||
|
|
||||||
if test "${enable_debug}" = yes; then
|
if test "${enable_debug}" = yes; then
|
||||||
CLIENTGUIFLAGS="${CLIENTGUIFLAGS} -D__WXDEBUG__ -D_DEBUG -DDEBUG"
|
CLIENTGUIFLAGS="${CLIENTGUIFLAGS} -D_DEBUG -DDEBUG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CLIENTGUILIBS=${WX_LIBS}
|
CLIENTGUILIBS=${WX_LIBS}
|
||||||
|
|
Loading…
Reference in New Issue