summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrédéric Brière <fbriere@fbriere.net>2020-03-31 14:24:28 -0400
committerFrédéric Brière <fbriere@fbriere.net>2020-03-31 18:02:40 -0400
commite8c2443bbd54d47cb2d3868d454ea48428b34bf0 (patch)
treece4dbe34268a8badd9aa83da316071b36d5ce02e
parentaaa3593b1e1f1c43ccb62028071842e376341c5e (diff)
downloadtwinkle-e8c2443bbd54d47cb2d3868d454ea48428b34bf0.tar
twinkle-e8c2443bbd54d47cb2d3868d454ea48428b34bf0.tar.gz
twinkle-e8c2443bbd54d47cb2d3868d454ea48428b34bf0.tar.lz
twinkle-e8c2443bbd54d47cb2d3868d454ea48428b34bf0.tar.xz
twinkle-e8c2443bbd54d47cb2d3868d454ea48428b34bf0.zip
Call GetProfileNameForm::init() in the constructor
init() is responsible for setting a validator for profileLineEdit; its invocation was probably lost in the Qt4/5 transition. Closes #189
-rw-r--r--src/gui/getprofilenameform.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/getprofilenameform.cpp b/src/gui/getprofilenameform.cpp
index 89c715e..19e3a62 100644
--- a/src/gui/getprofilenameform.cpp
+++ b/src/gui/getprofilenameform.cpp
@@ -16,6 +16,7 @@ GetProfileNameForm::GetProfileNameForm(QWidget* parent)
: QDialog(parent)
{
setupUi(this);
+ init();
}
/*