source: mmcs/formvariablesexogenas.cpp @ 9dd61b1

matrices
Last change on this file since 9dd61b1 was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

  • Property mode set to 100644
File size: 463 bytes
Line 
1#include "formvariablesexogenas.h"
2#include "ui_formvariablesexogenas.h"
3
4FormVariablesExogenas::FormVariablesExogenas(QWidget *parent) :
5    QWidget(parent,Qt::Tool),
6    ui(new Ui::FormVariablesExogenas)
7{
8    ui->setupUi(this);
9    int x = parent->pos().x() + parent->width()/2 - this->width()/2;
10    int y = parent->pos().y() + parent->height()/2 - this->height()/2;
11    this->move(x, y);
12}
13
14FormVariablesExogenas::~FormVariablesExogenas()
15{
16    delete ui;
17}
Note: See TracBrowser for help on using the repository browser.