From 8621d0e96a580560d0fa18eb8d4bd988a2f10b4a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20R=C4=99korajski?= Date: Fri, 5 Mar 2021 20:21:18 +0100 Subject: [PATCH] - add missing patch --- ...hon-signatures-of-the-QsciAPIs-ctors.patch | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 0011-Fixed-the-Python-signatures-of-the-QsciAPIs-ctors.patch diff --git a/0011-Fixed-the-Python-signatures-of-the-QsciAPIs-ctors.patch b/0011-Fixed-the-Python-signatures-of-the-QsciAPIs-ctors.patch new file mode 100644 index 0000000..d07bcac --- /dev/null +++ b/0011-Fixed-the-Python-signatures-of-the-QsciAPIs-ctors.patch @@ -0,0 +1,36 @@ +From: Phil Thompson +Date: Tue, 23 Jun 2020 12:34:22 +0300 +Subject: Fixed the Python signatures of the QsciAbstractAPIs and QsciAPIs + ctors. + +--- + Python/sip/qsciabstractapis.sip | 2 +- + Python/sip/qsciapis.sip | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Python/sip/qsciabstractapis.sip b/Python/sip/qsciabstractapis.sip +index e0240a0..a00f630 100644 +--- a/Python/sip/qsciabstractapis.sip ++++ b/Python/sip/qsciabstractapis.sip +@@ -25,7 +25,7 @@ class QsciAbstractAPIs : QObject + %End + + public: +- QsciAbstractAPIs(QsciLexer *lexer /TransferThis/ = 0); ++ QsciAbstractAPIs(QsciLexer *lexer /TransferThis/); + virtual ~QsciAbstractAPIs(); + + QsciLexer *lexer() const; +diff --git a/Python/sip/qsciapis.sip b/Python/sip/qsciapis.sip +index d5ad7d5..dbea1d7 100644 +--- a/Python/sip/qsciapis.sip ++++ b/Python/sip/qsciapis.sip +@@ -25,7 +25,7 @@ class QsciAPIs : QsciAbstractAPIs + %End + + public: +- QsciAPIs(QsciLexer *lexer /TransferThis/ = 0); ++ QsciAPIs(QsciLexer *lexer /TransferThis/); + virtual ~QsciAPIs(); + + void add(const QString &entry); -- 2.44.0