source: mmcs/formvariablesexogenas.cpp @ 68e57de

Last change on this file since 68e57de was 68e57de, checked in by rboet <rudmanmrrod@…>, 9 years ago

solucionado una dependencia de recurso para la imagen de cargar matriz

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