- Add patches to fix Tumbleweed compilation issues: * 0001-Fix-missing-includes-in-TerminalCharacterDecoder-27.patch * 0004-Refix-CTRL-SPACE-behaviour-on-QT5.patch * 0005-QMAKE_POST_LINK-doesn-t-work-in-Qt-5.5.-10.patch OBS-URL: https://build.opensuse.org/request/show/814596 OBS-URL: https://build.opensuse.org/package/show/X11:terminals/qmltermwidget?expand=0&rev=4
27 lines
624 B
Diff
27 lines
624 B
Diff
From 7c04df9884794b4be5c72ab8662298c92557098e Mon Sep 17 00:00:00 2001
|
|
From: suve <veg@svgames.pl>
|
|
Date: Wed, 6 May 2020 16:37:40 +0200
|
|
Subject: [PATCH] Fix missing #includes in TerminalCharacterDecoder (#27)
|
|
|
|
---
|
|
lib/TerminalCharacterDecoder.cpp | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/lib/TerminalCharacterDecoder.cpp b/lib/TerminalCharacterDecoder.cpp
|
|
index 579dedf..7ce8c78 100644
|
|
--- a/lib/TerminalCharacterDecoder.cpp
|
|
+++ b/lib/TerminalCharacterDecoder.cpp
|
|
@@ -22,6 +22,9 @@
|
|
// Own
|
|
#include "TerminalCharacterDecoder.h"
|
|
|
|
+// stdlib
|
|
+#include <cwctype>
|
|
+
|
|
// Qt
|
|
#include <QTextStream>
|
|
|
|
--
|
|
2.27.0
|
|
|