mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
Release notes at https://kde.org/announcements/kde-frameworks-5.61.0.php Thanks to antoine@ for the exp-runs, tcberner@ for most of the prep-work, the Gentoo community for cherry-picking patches There are a bunch of changes in (implicitly included) headers, which broke existing KDE Applications builds; that's why there are a whole bunch of "patch-gentoo-kf5-5.61-headers" patches (taken from Gentoo packaging). Those will go away with the next KDE Applications release, PR: 239777 Submitted by: tcberner
24 lines
735 B
Text
24 lines
735 B
Text
From 511d99b7745a6ce87a208bdbf69e631f1f136d53 Mon Sep 17 00:00:00 2001
|
|
From: Luca Beltrame <lbeltrame@kde.org>
|
|
Date: Sun, 21 Jul 2019 09:07:44 +0200
|
|
Subject: Fix build with Qt 5.13
|
|
|
|
The QDate include is no longer included transitively.
|
|
---
|
|
src/plugins/forms/widgets/kexidbdatepicker.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/plugins/forms/widgets/kexidbdatepicker.cpp b/src/plugins/forms/widgets/kexidbdatepicker.cpp
|
|
index 1e0692d..92a5c88 100644
|
|
--- src/plugins/forms/widgets/kexidbdatepicker.cpp
|
|
+++ src/plugins/forms/widgets/kexidbdatepicker.cpp
|
|
@@ -22,6 +22,7 @@
|
|
#include "kexidbdatepicker.h"
|
|
#include <kexiutils/utils.h>
|
|
|
|
+#include <QDate>
|
|
#include <QLineEdit>
|
|
#include <QInputMethodEvent>
|
|
|
|
--
|
|
cgit v1.1
|