From eac6c5d3a22147d78866122c2f5b89d3fdf6bfc6 Mon Sep 17 00:00:00 2001 From: zecke Date: Sun, 03 Nov 2002 11:10:04 +0000 Subject: No default arguments.... Patch by jowenn --- (limited to 'inputmethods') 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 @@ -134,8 +134,8 @@ static char * help_xpm[] = { 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 ); 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 @@ -41,7 +41,7 @@ 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(); -- cgit v0.9.0.2