From 0615b5e72a6c45086ddfbcbfc8bad4bd6fe938a1 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sat, 26 Jan 2002 22:02:08 +0000 Subject: [PATCH] corrected conditional compilation to take wxUSE_POSTSCRIPT into account git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/printps.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generic/printps.cpp b/src/generic/printps.cpp index a24ea0919f..36dbcac9a6 100644 --- a/src/generic/printps.cpp +++ b/src/generic/printps.cpp @@ -30,7 +30,7 @@ #include "wx/defs.h" -#if wxUSE_PRINTING_ARCHITECTURE +#if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT #ifndef WX_PRECOMP #include "wx/utils.h" @@ -56,7 +56,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxPostScriptPrinter, wxPrinterBase) IMPLEMENT_CLASS(wxPostScriptPrintPreview, wxPrintPreviewBase) - + // ============================================================================ // implementation // ============================================================================ -- 2.45.2