diff options
author | axis <qt-info@nokia.com> | 2009-08-12 08:57:22 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-08-12 09:01:07 (GMT) |
commit | 8cfcc81c9ff784d61eccdef53a3ce7ef125526f8 (patch) | |
tree | 75f83aff61ae80f5619330680abef50d05fd38f0 /src/gui | |
parent | 4d1c7a4f2f8f451d13d9a5bffc4c44c3221c3ca1 (diff) | |
download | Qt-8cfcc81c9ff784d61eccdef53a3ce7ef125526f8.zip Qt-8cfcc81c9ff784d61eccdef53a3ce7ef125526f8.tar.gz Qt-8cfcc81c9ff784d61eccdef53a3ce7ef125526f8.tar.bz2 |
Fixed warning.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/qlineedit_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/qlineedit_p.h b/src/gui/widgets/qlineedit_p.h index f1263c6..2c0d08f 100644 --- a/src/gui/widgets/qlineedit_p.h +++ b/src/gui/widgets/qlineedit_p.h @@ -76,7 +76,7 @@ public: QLineEditPrivate() : control(0), frame(1), contextMenuEnabled(1), cursorVisible(0), - dragEnabled(0), hscroll(0), vscroll(0), clickCausedFocus(0), + dragEnabled(0), clickCausedFocus(0), hscroll(0), vscroll(0), alignment(Qt::AlignLeading | Qt::AlignVCenter), leftTextMargin(0), topTextMargin(0), rightTextMargin(0), bottomTextMargin(0) { |