ldap: Don't use the backend's display name as identifier
[quassel.git] / src / core / sqlauthenticator.cpp
index 4977218..3be817b 100644 (file)
@@ -46,13 +46,19 @@ bool SqlAuthenticator::isAvailable() const
 
 QString SqlAuthenticator::backendId() const
 {
-    // We identify the backend to use for the monolithic core by its displayname.
+    // We identify the backend to use for the monolithic core by this identifier.
     // so only change this string if you _really_ have to and make sure the core
     // setup for the mono client still works ;)
     return QString("Database");
 }
 
 
+QString SqlAuthenticator::displayName() const
+{
+    return tr("Database");
+}
+
+
 QString SqlAuthenticator::description() const
 {
     return tr("Do not auth against any remote authentication service, but instead save a hashed and salted password "