diff --git a/utilities/assistants/sendbymail/tools/thunderbirdbinary.h b/utilities/assistants/sendbymail/tools/thunderbirdbinary.h index 90782288bc..6c84d36bf0 100644 --- a/utilities/assistants/sendbymail/tools/thunderbirdbinary.h +++ b/utilities/assistants/sendbymail/tools/thunderbirdbinary.h @@ -1,57 +1,57 @@ /* ============================================================ * * This file is a part of digiKam project * http://www.digikam.org * * Date : 2017-07-04 * Description : Autodetect thunderbird binary program * * Copyright (C) 2017 by Gilles Caulier * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software Foundation; * either version 2, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * ============================================================ */ #ifndef THUNDERBIRD_BINARY_H #define THUNDERBIRD_BINARY_H // Local includes #include "dbinaryiface.h" namespace Digikam { class ThunderbirdBinary : public DBinaryIface { public: ThunderbirdBinary() : DBinaryIface( QLatin1String("thunderbird"), QLatin1String("Thunderbird"), QLatin1String("https://www.mozilla.org/en-US/thunderbird/"), QLatin1String("SendByMail"), QStringList(QLatin1String("-v")), - i18n("Mozilla Fundation Mail Client.") + i18n("Mozilla Foundation Mail Client.") ) { setup(); } ~ThunderbirdBinary() { } }; } // namespace Digikam #endif // THUNDERBIRD_BINARY_H