]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/printwin.cpp
IsModified() function now works correctly
[wxWidgets.git] / src / msw / printwin.cpp
index a124a83685af5dbb66c3c15dbf6420d3b0697ee5..3e1097e3fbcd8cb0d4f821ab2596a016fd8b8b39 100644 (file)
@@ -171,7 +171,21 @@ bool wxWindowsPrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt
 
   wxWindow *win = CreateAbortWindow(parent, printout);
   wxYield();
+
+#if defined(__BORLANDC__) || defined(__GNUWIN32__)
   ::SetAbortProc((HDC) dc->GetHDC(), (FARPROC) lpAbortProc);
+#else
+  ::SetAbortProc((HDC) dc->GetHDC(), (int (_stdcall *)
+    // cast it to right type only if required
+    // @@@ it's really cdecl and we're casting it to stdcall - either there is
+    //     something I don't understand or it will crash at first usage
+  #ifdef STRICT
+    (HDC, int)
+  #else
+    ()
+  #endif
+    )lpAbortProc);
+#endif
 
   if (!win)
   {