X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsqlitestorage.cpp;h=1a75713aa5aeae66b0013fc71e43077b80b04387;hp=b7a07fd3919293b7893ef61d0224c72421ee05c7;hb=HEAD;hpb=99055e8e4a83c234ae424cc225d3a7aa17c1544b diff --git a/src/core/sqlitestorage.cpp b/src/core/sqlitestorage.cpp index b7a07fd3..3ca0344e 100644 --- a/src/core/sqlitestorage.cpp +++ b/src/core/sqlitestorage.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2020 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -1401,7 +1401,7 @@ bool SqliteStorage::renameBuffer(const UserId& user, const BufferId& bufferId, c safeExec(query); error = query.lastError().isValid(); - // unexepcted error occured (19 == constraint violation) + // unexpected error occurred (19 == constraint violation) if (error && query.lastError().nativeErrorCode() != QLatin1String{"19"}) { watchQuery(query); }