author | zecke <zecke> | 2002-11-03 11:10:04 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-03 11:10:04 (UTC) |
commit | eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6 (patch) (side-by-side diff) | |
tree | d096190896794e21fd2194a8ff17edec61b2c64f | |
parent | 3176ef8fcbaa4716738df7d2e4c0216ccaab604a (diff) | |
download | opie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.zip opie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.tar.gz opie-eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6.tar.bz2 |
No default arguments....
Patch by jowenn
-rw-r--r-- | inputmethods/handwriting/qimpeninput.cpp | 4 | ||||
-rw-r--r-- | inputmethods/handwriting/qimpeninput.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/inputmethods/handwriting/qimpeninput.cpp b/inputmethods/handwriting/qimpeninput.cpp index 3f7a347..db33c9b 100644 --- a/inputmethods/handwriting/qimpeninput.cpp +++ b/inputmethods/handwriting/qimpeninput.cpp @@ -129,18 +129,18 @@ static char * help_xpm[] = { " #.# "}; /*! \class QIMPenInput qimpeninput.h Pen input widget. */ -QIMPenInput::QIMPenInput( QWidget *parent, const char *name, WFlags f ) - : QFrame( parent, name, f ), helpDlg(0), profile(0) +QIMPenInput::QIMPenInput( QWidget *parent, const char *name, WFlags wf ) + : QFrame( parent, name, wf ), helpDlg(0), profile(0) { setFrameStyle( Box | Plain ); profileList.setAutoDelete( true ); matcher = new QIMPenMatch( this ); connect( matcher, SIGNAL(keypress(uint)), this, SLOT(keypress(uint)) ); connect( matcher, SIGNAL(erase()), this, SLOT(erase()) ); diff --git a/inputmethods/handwriting/qimpeninput.h b/inputmethods/handwriting/qimpeninput.h index b4e4006..75cf260 100644 --- a/inputmethods/handwriting/qimpeninput.h +++ b/inputmethods/handwriting/qimpeninput.h @@ -36,17 +36,17 @@ class QIMPenSetup; class QIMPenWordPick; class QIMPenMatch; class HandwritingHelp; class QIMPenInput : public QFrame { Q_OBJECT public: - QIMPenInput( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); + QIMPenInput( QWidget *parent = 0, const char *name = 0, WFlags wf = 0 ); virtual ~QIMPenInput(); void resetState(); QSize sizeHint() const; signals: void key( ushort, ushort, ushort, bool, bool ); |