We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891ef20 commit bc76704Copy full SHA for bc76704
1 file changed
src/dlgConnectionProfiles.cpp
@@ -487,6 +487,7 @@ void dlgConnectionProfiles::slot_save_name()
487
QListWidgetItem* pItem = profiles_tree_widget->currentItem();
488
QString newProfileName = profile_name_entry->text().trimmed();
489
490
+ validateProfile();
491
if (!validName || newProfileName.isEmpty() || !pItem) {
492
return;
493
}
@@ -2033,6 +2034,8 @@ bool dlgConnectionProfiles::validateProfile()
2033
2034
{
2035
bool valid = true;
2036
2037
+ validName = true, validPort = true, validUrl = true;
2038
+
2039
clearNotificationArea();
2040
2041
0 commit comments