| Commit message (Collapse) | Author | Age | Lines |
|
|
|
|
|
| |
Even though focus is supposed to initially go to profileLineEdit (due to
its first position in the tabstops list), this doesn't seem to be the
case in reality (at least for me).
|
|
|
|
|
|
|
|
|
|
|
| |
QRegExpValidator can be somewhat user-unfriendly, as it will prevent
characters from being input, or even deleted, while leaving the user in
the dark as to what is going on.
Retricting the set of characters allowed shouldn't pose a problem if we
make a mention of this on the form. Checking for a leading "." or "@",
however, is better left at submission time, with an explicit error
message in that case.
|
|
|
|
|
|
|
| |
init() is responsible for setting a validator for profileLineEdit; its
invocation was probably lost in the Qt4/5 transition.
Closes #189
|
|
|
|
|
|
|
| |
Since Qt 5.11, generated ui_getprofilename.h no longer includes QHeaderView
which breaks the chain that included qvalidator.h in getprofilename.cpp.
As it feels rather fragile to rely on such indirect includes, let's include
<QRegExpValidator> explicitly in each file using QRegExpValidator class.
|
| |
|
|
|