X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsqlauthenticator.cpp;h=f1ed1697646068c4bd222e55a3711e6d11b3bec3;hp=52f0ac640f0cd1985737a7f793e13e1620560ff5;hb=258d157a228d2b2b46b01d3b33ab932b9979436a;hpb=07473582d22eddd934ee52127cad2baa11943d59 diff --git a/src/core/sqlauthenticator.cpp b/src/core/sqlauthenticator.cpp index 52f0ac64..f1ed1697 100644 --- a/src/core/sqlauthenticator.cpp +++ b/src/core/sqlauthenticator.cpp @@ -38,11 +38,11 @@ SqlAuthenticator::~SqlAuthenticator() bool SqlAuthenticator::isAvailable() const { - // XXX: probably this should query the current storage (see the ::init routine too). + // FIXME: probably this should query the current storage (see the ::init routine too). return true; } -QString SqlAuthenticator::displayName() const +QString SqlAuthenticator::backendId() const { // We identify the backend to use for the monolithic core by its displayname. // so only change this string if you _really_ have to and make sure the core @@ -71,6 +71,6 @@ Authenticator::State SqlAuthenticator::init(const QVariantMap &settings) // TODO: FIXME: this should check if the storage provider is ready, but I don't // know if there's an exposed way to do that at the moment. - quInfo() << qPrintable(displayName()) << "Authenticator is ready."; + quInfo() << qPrintable(backendId()) << "Authenticator is ready."; return IsReady; }