forked from pool/libqt5-qtbase
29 lines
910 B
Diff
29 lines
910 B
Diff
|
From a79d9da8e0bbc69053d00dd1ff1dd55c47258291 Mon Sep 17 00:00:00 2001
|
||
|
From: =?utf8?q?S=C3=A9rgio=20Martins?= <iamsergio@gmail.com>
|
||
|
Date: Mon, 8 Jan 2018 15:58:57 +0000
|
||
|
Subject: [PATCH] Fix build due to missing QDebug include
|
||
|
|
||
|
The build just passes on Qt CI by chance.
|
||
|
|
||
|
Change-Id: I3bfef12b48df22fa64d92af9cd345bfc984c9923
|
||
|
Reviewed-by: David Faure <david.faure@kdab.com>
|
||
|
---
|
||
|
src/printsupport/dialogs/qprintdialog_unix.cpp | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/src/printsupport/dialogs/qprintdialog_unix.cpp b/src/printsupport/dialogs/qprintdialog_unix.cpp
|
||
|
index fcb53f4..02d6903 100644
|
||
|
--- a/src/printsupport/dialogs/qprintdialog_unix.cpp
|
||
|
+++ b/src/printsupport/dialogs/qprintdialog_unix.cpp
|
||
|
@@ -48,6 +48,7 @@
|
||
|
#if QT_CONFIG(filedialog)
|
||
|
#include "qfiledialog.h"
|
||
|
#endif
|
||
|
+#include <QtCore/qdebug.h>
|
||
|
#include <QtCore/qdir.h>
|
||
|
#include <QtCore/qtextcodec.h>
|
||
|
#include <QtGui/qevent.h>
|
||
|
--
|
||
|
2.7.4
|
||
|
|