Fixed make install bug
Commented AutoLayout() in wxWindow::OnSize() out (why?) Removed double code Fixed print page dialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -197,12 +197,12 @@ void wxGenericPrintDialog::OnRange(wxCommandEvent& event)
|
||||
{
|
||||
if (!fromText) return;
|
||||
|
||||
if (event.GetInt() == 1)
|
||||
if (event.GetInt() == 0)
|
||||
{
|
||||
fromText->Enable(FALSE);
|
||||
toText->Enable(FALSE);
|
||||
}
|
||||
else if (event.GetInt() == 0)
|
||||
else if (event.GetInt() == 1)
|
||||
{
|
||||
fromText->Enable(TRUE);
|
||||
toText->Enable(TRUE);
|
||||
|
Reference in New Issue
Block a user