From 90b51430616dc0259962d8e76cf267f80a6a2fcd Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 10 Nov 2003 22:33:34 +0000 Subject: [PATCH] warn if print arch is not configured git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24516 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/printfw.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wxPython/src/printfw.h b/wxPython/src/printfw.h index dcede4e514..5e3a202518 100644 --- a/wxPython/src/printfw.h +++ b/wxPython/src/printfw.h @@ -12,6 +12,9 @@ ///////////////////////////////////////////////////////////////////////////// +#if !wxUSE_PRINTING_ARCHITECTURE +#error wxPython requires the wx printing architecture to be enabled +#endif class wxPyPrintout : public wxPrintout { public: