X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=Client%2Fhelproutingdialog.cpp;fp=Client%2Fhelproutingdialog.cpp;h=d0a0262dd330fe2556195e518bf3ce2aa1ea8889;hb=59a7180931986f4d9420f6b4f1beb85f078fd309;hp=b1ead53600d291923a6ad47178fdf40986e287bf;hpb=eb8665a8c4b6a15a9d5a9f5b348432293d171ae6;p=speedfreak diff --git a/Client/helproutingdialog.cpp b/Client/helproutingdialog.cpp index b1ead53..d0a0262 100644 --- a/Client/helproutingdialog.cpp +++ b/Client/helproutingdialog.cpp @@ -1,6 +1,18 @@ +/* + * Help routing dialog + * + * @author Janne Änäkkälä + * @author Toni Jussila + * @copyright (c) 2010 Speed Freak team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + */ + #include "helproutingdialog.h" #include "ui_helproutingdialog.h" +/** + * Default constructor of this class. + */ HelpRoutingDialog::HelpRoutingDialog(QWidget *parent) : QDialog(parent), ui(new Ui::HelpRoutingDialog) @@ -18,11 +30,17 @@ HelpRoutingDialog::HelpRoutingDialog(QWidget *parent) : ui->labelSavePic->hide(); } +/** + * Default destructor of this class. + */ HelpRoutingDialog::~HelpRoutingDialog() { delete ui; } +/** + * + */ void HelpRoutingDialog::changeEvent(QEvent *e) { QDialog::changeEvent(e); @@ -35,6 +53,9 @@ void HelpRoutingDialog::changeEvent(QEvent *e) } } +/** + * This slot function called when ever next button clicked. + */ void HelpRoutingDialog::on_pushButtonNext_clicked() { pageCounter ++; @@ -71,6 +92,9 @@ void HelpRoutingDialog::on_pushButtonNext_clicked() } } +/** + * This slot function called when ever last button clicked. + */ void HelpRoutingDialog::on_pushButtonLast_clicked() { pageCounter --;