[qet] [3808] About qet : use QTabWidget instead of QETTabWidget

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


Revision: 3808
Author:   blacksun
Date:     2015-03-05 12:45:37 +0100 (Thu, 05 Mar 2015)
Log Message:
-----------
About qet : use QTabWidget instead of QETTabWidget

Modified Paths:
--------------
    trunk/sources/aboutqet.cpp

Modified: trunk/sources/aboutqet.cpp
===================================================================
--- trunk/sources/aboutqet.cpp	2015-03-05 10:26:09 UTC (rev 3807)
+++ trunk/sources/aboutqet.cpp	2015-03-05 11:45:37 UTC (rev 3808)
@@ -15,12 +15,16 @@
 	You should have received a copy of the GNU General Public License
 	along with QElectroTech.  If not, see <http://www.gnu.org/licenses/>.
 */
-#include <QtWidgets>
-#include "qettabwidget.h"
 #include "aboutqet.h"
 #include "qet.h"
 #include "qeticons.h"
 
+#include <QTabWidget>
+#include <QDialogButtonBox>
+#include <QVBoxLayout>
+#include <QLabel>
+#include <QTextEdit>
+
 /**
 	Constructeur
 	@param parent The parent of the dialog QWidget
@@ -33,7 +37,7 @@
 	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"));


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/