diff --git a/packageplugins/aurorae/aurorae.h b/packageplugins/aurorae/aurorae.h index c3005aac8..58ed704f5 100644 --- a/packageplugins/aurorae/aurorae.h +++ b/packageplugins/aurorae/aurorae.h @@ -1,33 +1,33 @@ /****************************************************************************** * Copyright 2017 by Demitrius Belai * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 * * Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; see the file COPYING.LIB. If not, write to * * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301, USA. * *******************************************************************************/ #ifndef AURORAEPACKAGE_H #define AURORAEPACKAGE_H #include class AuroraePackage : public KPackage::PackageStructure { public: AuroraePackage(QObject*, const QVariantList &) {} - void initPackage(KPackage::Package *package) Q_DECL_OVERRIDE; - void pathChanged(KPackage::Package *package) Q_DECL_OVERRIDE; + void initPackage(KPackage::Package *package) override; + void pathChanged(KPackage::Package *package) override; }; #endif diff --git a/packageplugins/decoration/decoration.h b/packageplugins/decoration/decoration.h index cf3897efa..5196b2109 100644 --- a/packageplugins/decoration/decoration.h +++ b/packageplugins/decoration/decoration.h @@ -1,33 +1,33 @@ /****************************************************************************** * Copyright 2017 by Demitrius Belai * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 * * Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; see the file COPYING.LIB. If not, write to * * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301, USA. * *******************************************************************************/ #ifndef DECORATIONPACKAGE_H #define DECORATIONPACKAGE_H #include class DecorationPackage : public KPackage::PackageStructure { public: DecorationPackage(QObject*, const QVariantList &) {} - void initPackage(KPackage::Package *package) Q_DECL_OVERRIDE; - void pathChanged(KPackage::Package *package) Q_DECL_OVERRIDE; + void initPackage(KPackage::Package *package) override; + void pathChanged(KPackage::Package *package) override; }; #endif diff --git a/packageplugins/scripts/scripts.h b/packageplugins/scripts/scripts.h index b5b703524..fc9cb0389 100644 --- a/packageplugins/scripts/scripts.h +++ b/packageplugins/scripts/scripts.h @@ -1,33 +1,33 @@ /****************************************************************************** * Copyright 2017 by Marco Martin * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 * * Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; see the file COPYING.LIB. If not, write to * * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301, USA. * *******************************************************************************/ #ifndef SCRIPTSPACKAGE_H #define SCRIPTSPACKAGE_H #include class ScriptsPackage : public KPackage::PackageStructure { public: ScriptsPackage(QObject*, const QVariantList &) {} - void initPackage(KPackage::Package *package) Q_DECL_OVERRIDE; - void pathChanged(KPackage::Package *package) Q_DECL_OVERRIDE; + void initPackage(KPackage::Package *package) override; + void pathChanged(KPackage::Package *package) override; }; #endif diff --git a/packageplugins/windowswitcher/windowswitcher.h b/packageplugins/windowswitcher/windowswitcher.h index 141fcaf4d..863647f82 100644 --- a/packageplugins/windowswitcher/windowswitcher.h +++ b/packageplugins/windowswitcher/windowswitcher.h @@ -1,33 +1,33 @@ /****************************************************************************** * Copyright 2017 by Marco Martin * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library 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 * * Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public License * * along with this library; see the file COPYING.LIB. If not, write to * * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * * Boston, MA 02110-1301, USA. * *******************************************************************************/ #ifndef WINDOWSWITCHER_H #define WINDOWSWITCHER_H #include class SwitcherPackage : public KPackage::PackageStructure { public: SwitcherPackage(QObject*, const QVariantList &) {} - void initPackage(KPackage::Package *package) Q_DECL_OVERRIDE; - void pathChanged(KPackage::Package *package) Q_DECL_OVERRIDE; + void initPackage(KPackage::Package *package) override; + void pathChanged(KPackage::Package *package) override; }; #endif