[PyKDE] Bugs in qlineedit.sip and qmultilineedit.sip
장우현
louis at conan.mizi.com
Tue Jun 19 11:22:16 BST 2001
Hi,
Recently I found that event() method in qlineedit.sip placed in a
wrong place and event() method in qmultilineedit.sip was omited.
Because of it, QLineEdit::event() and QMultiLineEdit::event()
couldn't be called. :(
Please fix the bug.
Regards,
Louis JANG
---8K---
diff -uNr PyQt-2.4-orig/sip/qlineedit.sip PyQt-2.4/sip/qlineedit.sip
--- PyQt-2.4-orig/sip/qlineedit.sip Sun Apr 22 22:17:48 2001
+++ PyQt-2.4/sip/qlineedit.sip Tue Jun 19 17:51:14 2001
@@ -131,9 +131,9 @@
void resizeEvent(QResizeEvent *);
void leaveEvent(QEvent *);
void repaintArea(int,int);
+ bool event(QEvent *);
%If Version(- Qt_2_00)
void timerEvent(QTimerEvent *);
- bool event(QEvent *);
bool hasMarkedText() const;
QString markedText() const;
%End
diff -uNr PyQt-2.4-orig/sip/qmultilinedit.sip PyQt-2.4/sip/qmultilinedit.sip
--- PyQt-2.4-orig/sip/qmultilinedit.sip Sun Apr 22 22:17:48 2001
+++ PyQt-2.4/sip/qmultilinedit.sip Tue Jun 19 17:53:06 2001
@@ -232,6 +232,7 @@
void mouseMoveEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void mouseDoubleClickEvent(QMouseEvent *);
+ bool event(QEvent *);
%If Version(Qt_2_00 -)
void wheelEvent(QWheelEvent *);
%End
---8K---
More information about the PyQt
mailing list