author | simon <simon> | 2002-03-25 19:32:44 (UTC) |
---|---|---|
committer | simon <simon> | 2002-03-25 19:32:44 (UTC) |
commit | 2cc5e1007a57212f4beaac1980436979d85fad3f (patch) (side-by-side diff) | |
tree | fbc6c116bb70400346e4b0fcedb402a927c7ec77 | |
parent | c23a779daf47909171d3cde424e5c84314d559ac (diff) | |
download | opie-2cc5e1007a57212f4beaac1980436979d85fad3f.zip opie-2cc5e1007a57212f4beaac1980436979d85fad3f.tar.gz opie-2cc5e1007a57212f4beaac1980436979d85fad3f.tar.bz2 |
- fixed warning about shadowing
-rw-r--r-- | inputmethods/handwriting/qimpeninput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inputmethods/handwriting/qimpeninput.cpp b/inputmethods/handwriting/qimpeninput.cpp index 6718b26..9acab8b 100644 --- a/inputmethods/handwriting/qimpeninput.cpp +++ b/inputmethods/handwriting/qimpeninput.cpp @@ -125,26 +125,26 @@ 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 flags ) + : QFrame( parent, name, flags ), 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()) ); QGridLayout *gl = new QGridLayout( this, 5, 2, 1, 0 ); gl->setColStretch( 0, 1 ); |