Improved to "half-way usable" (version 0.5)
[pierogi] / piraboutform.cpp
1 #include "piraboutform.h"
2 #include "ui_piraboutform.h"
3
4 PIRAboutForm::PIRAboutForm(QWidget *parent) :
5   QWidget(parent),
6   ui(new Ui::PIRAboutForm)
7 {
8   ui->setupUi(this);
9
10   setAttribute(Qt::WA_Maemo5StackedWindow);
11   setWindowFlags(windowFlags() | Qt::Window);
12 }
13
14 PIRAboutForm::~PIRAboutForm()
15 {
16   delete ui;
17 }