summaryrefslogtreecommitdiffstats
path: root/src/realmpropertiesdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-23 10:45:52 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-25 12:57:02 +0900
commit564b550458c854dfec4b90d583bea6d4dbcbc4e5 (patch)
tree7bf1c7206efd263b9628df7a1d02ea782642cb91 /src/realmpropertiesdialog.cpp
parente447b9383804a6496dce959fd101cbcb15020207 (diff)
downloadkcmldap-r14.1.4.tar.gz
kcmldap-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4r14.1.x
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f7bc30bb4b99b08f1ebb0e1910ee156de6460300)
Diffstat (limited to 'src/realmpropertiesdialog.cpp')
-rw-r--r--src/realmpropertiesdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/realmpropertiesdialog.cpp b/src/realmpropertiesdialog.cpp
index ce6ebed..4591d9e 100644
--- a/src/realmpropertiesdialog.cpp
+++ b/src/realmpropertiesdialog.cpp
@@ -70,7 +70,7 @@ void RealmPropertiesDialog::slotOk() {
realm.name = m_base->txtRealmName->text();
realm.uid_offset = m_base->txtUIDOffset->value();
realm.gid_offset = m_base->txtGIDOffset->value();
- realm.domain_mappings = TQStringList::split("\n", m_base->txtDomains->text(), FALSE);
+ realm.domain_mappings = TQStringList::split("\n", m_base->txtDomains->text(), false);
realm.kdc = m_base->txtKDC->text();
realm.kdc_port = m_base->txtKDCPort->value();
realm.admin_server = m_base->txtAdminServer->text();