Fixed the Python signatures of the QsciAbstractAPIs and QsciAPIs ctors.
authorPhil Thompson <phil@riverbankcomputing.com>
Tue, 23 Jun 2020 09:34:22 +0000 (12:34 +0300)
committerDmitry Shachnev <mitya57@debian.org>
Tue, 23 Jun 2020 09:55:57 +0000 (10:55 +0100)
Gbp-Pq: Name 0011-Fixed-the-Python-signatures-of-the-QsciAPIs-ctors.patch

Python/sip/qsciabstractapis.sip
Python/sip/qsciapis.sip

index e0240a08fdf577cadc2be31196c3c094c74d30df..a00f630d4aa86a735307eb23b0ae5aa27903580a 100644 (file)
@@ -25,7 +25,7 @@ class QsciAbstractAPIs : QObject
 %End
 
 public:
-    QsciAbstractAPIs(QsciLexer *lexer /TransferThis/ = 0);
+    QsciAbstractAPIs(QsciLexer *lexer /TransferThis/);
     virtual ~QsciAbstractAPIs();
 
     QsciLexer *lexer() const;
index d5ad7d51aae35f3d7dbf104cb2df7ae6ec6b77fe..dbea1d7c0bec7fcf8774f0c9659d6dc3edc13d8b 100644 (file)
@@ -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);