diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2011-12-06 17:27:05 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2011-12-06 17:28:11 +0100 |
commit | 88a4a8d997921309a7886ed0d1dc383ee3c2f767 (patch) | |
tree | 5fc956b3896956543d5c415575d94b9e7c6372b0 /vcl/unx/gtk | |
parent | d57887eaad534ca51fc4975918fab66b2f93633d (diff) |
GdkPrinter seems optional on Gtk3, too
Added necessary configure magic & conditional compiles for that.
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r-- | vcl/unx/gtk/app/gtkinst.cxx | 4 | ||||
-rw-r--r-- | vcl/unx/gtk/inc/gtkprintwrapper.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx index b6eacc9b3449..e9c2afa6e12a 100644 --- a/vcl/unx/gtk/app/gtkinst.cxx +++ b/vcl/unx/gtk/app/gtkinst.cxx @@ -401,7 +401,7 @@ void GtkInstance::AddToRecentDocumentList(const rtl::OUString& rFileUrl, const r SalInfoPrinter* GtkInstance::CreateInfoPrinter( SalPrinterQueueInfo* pQueueInfo, ImplJobSetup* pSetupData ) { -#if defined ENABLE_GTK_PRINT || GTK_CHECK_VERSION(3,0,0) +#if defined ENABLE_GTK_PRINT || defined ENABLE_GTK3_PRINT mbPrinterInit = true; // create and initialize SalInfoPrinter PspSalInfoPrinter* pPrinter = new GtkSalInfoPrinter; @@ -414,7 +414,7 @@ SalInfoPrinter* GtkInstance::CreateInfoPrinter( SalPrinterQueueInfo* pQueueInfo, SalPrinter* GtkInstance::CreatePrinter( SalInfoPrinter* pInfoPrinter ) { -#if defined ENABLE_GTK_PRINT || GTK_CHECK_VERSION(3,0,0) +#if defined ENABLE_GTK_PRINT || defined ENABLE_GTK3_PRINT mbPrinterInit = true; fprintf(stderr, "gtk printer\n"); return new GtkSalPrinter( pInfoPrinter ); diff --git a/vcl/unx/gtk/inc/gtkprintwrapper.hxx b/vcl/unx/gtk/inc/gtkprintwrapper.hxx index 1df133a99548..6ea8a563d4aa 100644 --- a/vcl/unx/gtk/inc/gtkprintwrapper.hxx +++ b/vcl/unx/gtk/inc/gtkprintwrapper.hxx @@ -33,7 +33,7 @@ #include <gtk/gtk.h> -#if defined ENABLE_GTK_PRINT || GTK_CHECK_VERSION(3,0,0) +#if defined ENABLE_GTK_PRINT || defined ENABLE_GTK3_PRINT #include <gtk/gtkunixprint.h> #if !GTK_CHECK_VERSION(3,0,0) @@ -49,7 +49,7 @@ namespace unx class GtkPrintWrapper : private boost::noncopyable { -#if defined ENABLE_GTK_PRINT || GTK_CHECK_VERSION(3,0,0) +#if defined ENABLE_GTK_PRINT || defined ENABLE_GTK3_PRINT public: GtkPrintWrapper(); ~GtkPrintWrapper(); |