diff --git a/sources/aboutqet.cpp b/sources/aboutqet.cpp index 095249cb6..7f98e17c4 100644 --- a/sources/aboutqet.cpp +++ b/sources/aboutqet.cpp @@ -15,12 +15,16 @@ You should have received a copy of the GNU General Public License along with QElectroTech. If not, see . */ -#include -#include "qettabwidget.h" #include "aboutqet.h" #include "qet.h" #include "qeticons.h" +#include +#include +#include +#include +#include + /** Constructeur @param parent The parent of the dialog QWidget @@ -33,7 +37,7 @@ AboutQET::AboutQET(QWidget *parent) : QDialog(parent) { setModal(true); // Trois onglets - QETTabWidget *tabs = new QETTabWidget(this); + QTabWidget *tabs = new QTabWidget(this); tabs -> addTab(aboutTab(), tr("À &propos", "tab title")); tabs -> addTab(authorsTab(), tr("A&uteurs", "tab title")); tabs -> addTab(translatorsTab(), tr("&Traducteurs", "tab title"));