mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11545
This commit is contained in:
parent
db9534369b
commit
ee90d7486a
|
@ -12672,7 +12672,8 @@ Charlie 17 Nov 2006
|
|||
doesn't overlap window's grow icon
|
||||
- Mac MGR: Fix ToolTip / Help Message for Mac: substitute "command key" for
|
||||
"control key".
|
||||
- MGR: Save state if close box on SG Message Dialog window frame clicked.
|
||||
|
||||
clientgui/
|
||||
sg_DlgMessages.cpp
|
||||
sg_DlgMessages.cpp, h
|
||||
ViewMessages.cpp
|
||||
|
|
|
@ -636,6 +636,16 @@ CDlgMessages::CDlgMessages( wxWindow* parent, wxWindowID id, const wxString& cap
|
|||
}
|
||||
|
||||
|
||||
CDlgMessages::~CDlgMessages() {
|
||||
wxLogTrace(wxT("Function Start/End"), wxT("CDlgMessages::CDlgMessages - Destructor Function Begin"));
|
||||
|
||||
SaveState(); // Save state if close box on window frame clicked
|
||||
|
||||
wxLogTrace(wxT("Function Start/End"), wxT("CDlgMessages::CDlgMessages - Destructor Function End"));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*!
|
||||
* CDlgMessages creator
|
||||
*/
|
||||
|
|
|
@ -158,6 +158,8 @@ public:
|
|||
CDlgMessages( );
|
||||
CDlgMessages( wxWindow* parent, wxWindowID id = SYMBOL_CDLGMESSAGES_IDNAME, const wxString& caption = SYMBOL_CDLGMESSAGES_TITLE, const wxPoint& pos = SYMBOL_CDLGMESSAGES_POSITION, const wxSize& size = SYMBOL_CDLGMESSAGES_SIZE, long style = SYMBOL_CDLGMESSAGES_STYLE );
|
||||
|
||||
~CDlgMessages();
|
||||
|
||||
/// Creation
|
||||
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CDLGMESSAGES_IDNAME, const wxString& caption = SYMBOL_CDLGMESSAGES_TITLE, const wxPoint& pos = SYMBOL_CDLGMESSAGES_POSITION, const wxSize& size = SYMBOL_CDLGMESSAGES_SIZE, long style = SYMBOL_CDLGMESSAGES_STYLE );
|
||||
|
||||
|
|
Loading…
Reference in New Issue