From fc417aecd6b72f922d22bab30ad6bf58d4cca71a Mon Sep 17 00:00:00 2001 From: blacksun Date: Thu, 5 Mar 2015 11:45:37 +0000 Subject: [PATCH] About qet : use QTabWidget instead of QETTabWidget git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3808 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/aboutqet.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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"));