diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-07-29 07:14:49 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-07-29 07:25:44 (GMT) |
commit | fb7d86cf23227302d48db279ec589221d11a1f6a (patch) | |
tree | fc3022e03fe9f56d568abc6df57f154b1a58c778 /src/gui/widgets/widgets.pri | |
parent | a45fe18569be1fc91e26f6e58d2f16bc8c6958de (diff) | |
download | Qt-fb7d86cf23227302d48db279ec589221d11a1f6a.zip Qt-fb7d86cf23227302d48db279ec589221d11a1f6a.tar.gz Qt-fb7d86cf23227302d48db279ec589221d11a1f6a.tar.bz2 |
Move QLineEdit logic into QLineControl
Manually merged from the kinetic repository, where it has been used
for a while. Like QTextControl, there is no auto test for the control,
just for the widgets built with it.
The purpose of this change is so that we can build stuff like QLineEdit
in other places (like kinetic). Also included is a trivial change to
QValidator, needed to use it with QLineControl in QML.
Reviewed-by: mbm
Diffstat (limited to 'src/gui/widgets/widgets.pri')
-rw-r--r-- | src/gui/widgets/widgets.pri | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/widgets/widgets.pri b/src/gui/widgets/widgets.pri index 2d809a1..8f24fac 100644 --- a/src/gui/widgets/widgets.pri +++ b/src/gui/widgets/widgets.pri @@ -30,6 +30,7 @@ HEADERS += \ widgets/qlcdnumber.h \ widgets/qlineedit.h \ widgets/qlineedit_p.h \ + widgets/qlinecontrol_p.h \ widgets/qmainwindow.h \ widgets/qmainwindowlayout_p.h \ widgets/qmdiarea.h \ @@ -101,7 +102,9 @@ SOURCES += \ widgets/qgroupbox.cpp \ widgets/qlabel.cpp \ widgets/qlcdnumber.cpp \ + widgets/qlineedit_p.cpp \ widgets/qlineedit.cpp \ + widgets/qlinecontrol.cpp \ widgets/qmainwindow.cpp \ widgets/qmainwindowlayout.cpp \ widgets/qmdiarea.cpp \ |