defuze.me
Client
|
00001 /************************************************************************** 00002 ** defuze.me Epitech Innovative Project 00003 ** 00004 ** Copyright 2010-2011 00005 ** Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard 00006 ** Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier 00007 ** 00008 ** All rights reserved. 00009 **************************************************************************/ 00010 00011 #include "sourcesparams.hpp" 00012 00013 using namespace Library; 00014 00015 SourcesParams::SourcesParams(const QString &title, const QString &category, QWidget *parent) : 00016 Gui::ParametersPage(title, category, parent) 00017 { 00018 setupUi(this); 00019 } 00020 00021 void SourcesParams::changeEvent(QEvent *e) 00022 { 00023 QWidget::changeEvent(e); 00024 switch (e->type()) { 00025 case QEvent::LanguageChange: 00026 retranslateUi(this); 00027 break; 00028 default: 00029 break; 00030 } 00031 }