From c23a779daf47909171d3cde424e5c84314d559ac Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 25 Mar 2002 19:24:11 +0000 Subject: - fixed warning about name shadowing --- (limited to 'inputmethods') diff --git a/inputmethods/keyboard/keyboard.cpp b/inputmethods/keyboard/keyboard.cpp index 233f08e..a04c45a 100644 --- a/inputmethods/keyboard/keyboard.cpp +++ b/inputmethods/keyboard/keyboard.cpp @@ -33,8 +33,8 @@ #define USE_SMALL_BACKSPACE -Keyboard::Keyboard(QWidget* parent, const char* name, WFlags f) : - QFrame(parent, name, f), shift(FALSE), lock(FALSE), ctrl(FALSE), +Keyboard::Keyboard(QWidget* parent, const char* _name, WFlags f) : + QFrame(parent, _name, f), shift(FALSE), lock(FALSE), ctrl(FALSE), alt(FALSE), useLargeKeys(TRUE), useOptiKeys(0), pressedKey(-1), unicode(-1), qkeycode(0), modifiers(0) { -- cgit v0.9.0.2