From 327b560e4e6aa6e889111ae26131d3cb672bf770 Mon Sep 17 00:00:00 2001 From: Olivier CHURLAUD Date: Fri, 15 Jul 2016 21:17:30 +0200 Subject: [PATCH] This is Qt5 based, remove condition --- part.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/part.cpp b/part.cpp index e38e701ac..a0770d1d3 100644 --- a/part.cpp +++ b/part.cpp @@ -72,8 +72,6 @@ #include #endif -#include - // local includes #include "aboutdata.h" #include "extensions.h" @@ -2769,13 +2767,11 @@ void Part::slotPrint() printDialog->setEnabledOptions( printDialog->enabledOptions() ^ QAbstractPrintDialog::PrintToFile ); } -#if QT_VERSION >= KDE_MAKE_VERSION(4,7,0) // Enable the Current Page option in the dialog. if ( m_document->pages() > 1 && currentPage() > 0 ) { printDialog->setOption( QAbstractPrintDialog::PrintCurrentPage ); } -#endif if ( printDialog->exec() ) doPrint( printer );