mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11542
This commit is contained in:
parent
a9f3a3ac6c
commit
0d01a4b100
|
@ -12663,3 +12663,11 @@ Rom 16 Nov 2006
|
|||
Rom 16 Nov 2006
|
||||
- Tag for 5.7.4 release, all platforms
|
||||
boinc_core_release_5_7_4
|
||||
|
||||
Charlie 17 Nov 2006
|
||||
- MGR: Fix restore of SG Message Dialog size and position on Mac: call
|
||||
RestoreState() _after_ calling GetSizer()->Fit(), GetSizer()->SetSizeHints()
|
||||
and Center().
|
||||
|
||||
clientgui/
|
||||
sg_DlgMessages.cpp
|
||||
|
|
|
@ -647,12 +647,13 @@ bool CDlgMessages::Create( wxWindow* parent, wxWindowID id, const wxString& capt
|
|||
SetForegroundColour(*wxBLACK);
|
||||
SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS);
|
||||
|
||||
RestoreState();
|
||||
|
||||
GetSizer()->Fit(this);
|
||||
GetSizer()->SetSizeHints(this);
|
||||
Center();
|
||||
|
||||
// To work properly on Mac, RestoreState() must be called _after_
|
||||
// calling GetSizer()->Fit(), GetSizer()->SetSizeHints() and Center()
|
||||
RestoreState();
|
||||
|
||||
Thaw();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "BOINC";
|
||||
CFBundleShortVersionString = "BOINC version 5.7.2";
|
||||
CFBundleGetInfoString = "BOINC version 5.7.2, Copyright 2006 University of California.";
|
||||
CFBundleShortVersionString = "BOINC version 5.7.4";
|
||||
CFBundleGetInfoString = "BOINC version 5.7.4, Copyright 2006 University of California.";
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>BNC!</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.7.2</string>
|
||||
<string>5.7.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.7.2</string>
|
||||
<string>5.7.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.7.2</string>
|
||||
<string>5.7.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.7.2</string>
|
||||
<string>5.7.4</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>BOINC_Saver_ModuleView</string>
|
||||
</dict>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.7.2</string>
|
||||
<string>5.7.4</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
Loading…
Reference in New Issue