X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;ds=inline;f=Client%2Fhelpresultsdialog.cpp;fp=Client%2Fhelpresultsdialog.cpp;h=415bcd1a0013259809c47bfb608b7580a74f609f;hb=ef6573877133287171c02d2e7b1232ff44ab804e;hp=0000000000000000000000000000000000000000;hpb=07c01f58f6bdb4a5ed8797ddf3a55bbbc52b0c4c;p=speedfreak diff --git a/Client/helpresultsdialog.cpp b/Client/helpresultsdialog.cpp new file mode 100644 index 0000000..415bcd1 --- /dev/null +++ b/Client/helpresultsdialog.cpp @@ -0,0 +1,26 @@ +#include "helpresultsdialog.h" +#include "ui_helpresultsdialog.h" + +HelpResultsDialog::HelpResultsDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::HelpResultsDialog) +{ + ui->setupUi(this); +} + +HelpResultsDialog::~HelpResultsDialog() +{ + delete ui; +} + +void HelpResultsDialog::changeEvent(QEvent *e) +{ + QDialog::changeEvent(e); + switch (e->type()) { + case QEvent::LanguageChange: + ui->retranslateUi(this); + break; + default: + break; + } +}