mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10544
This commit is contained in:
parent
9a1d91d4c9
commit
f14d8ead9b
|
@ -7042,3 +7042,9 @@ David 28 June 2006
|
|||
Makefile.am
|
||||
http_curl.C,h
|
||||
main.C
|
||||
|
||||
Rom 28 June 2006
|
||||
- Bug Fix: make sure the same frame is not initialized twice.
|
||||
|
||||
clientgui/
|
||||
BOINCGUIApp.cpp
|
||||
|
|
|
@ -1028,7 +1028,7 @@ bool CBOINCGUIApp::SetActiveGUI(int iGUISelection, bool bShowWindow) {
|
|||
CBOINCBaseFrame* pNewFrame = NULL;
|
||||
|
||||
// Create the new window
|
||||
if ((iGUISelection != m_iGUISelected) || !pNewFrame) {
|
||||
if ((iGUISelection != m_iGUISelected) || !m_pFrame) {
|
||||
switch(iGUISelection) {
|
||||
case BOINC_SIMPLEGUI:
|
||||
// Initialize the simple gui window
|
||||
|
|
Loading…
Reference in New Issue