2 GnuWin32 compile bugs fixed, incl. printf bug in prntdlgg that sent GnuWin32

into an endless loop


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@545 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-08-15 12:30:42 +00:00
parent 8d71b5552e
commit c856c750c0
2 changed files with 4 additions and 6 deletions

View File

@@ -235,7 +235,7 @@ bool wxGenericPrintDialog::TransferDataToWindow(void)
sprintf(buf, "%d", printData.GetFromPage());
fromText->SetValue(buf);
sprintf(buf, "% d", printData.GetFromPage());
sprintf(buf, "%d", printData.GetFromPage());
toText->SetValue(buf);
if (printData.GetAllPages())