Michaël Lemaire
cb5b7d527a
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@203 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
16 lines
278 B
C++
16 lines
278 B
C++
#include "formwater.h"
|
|
#include "ui_formwater.h"
|
|
|
|
FormWater::FormWater(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::FormWater)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
this->findChild<QToolBox*>("water_configs")->setCurrentIndex(0);
|
|
}
|
|
|
|
FormWater::~FormWater()
|
|
{
|
|
delete ui;
|
|
}
|