source: mmcs/formcompararmnc.cpp @ 32f758e

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

agregada comparacion de escenarios del modelo no clasico

  • Property mode set to 100644
File size: 421 bytes
Line 
1#include "formcompararmnc.h"
2#include "ui_formcompararmnc.h"
3
4FormCompararMNC::FormCompararMNC(QWidget *parent) :
5    QWidget(parent,Qt::Tool),
6    ui(new Ui::FormCompararMNC)
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
14FormCompararMNC::~FormCompararMNC()
15{
16    delete ui;
17}
Note: See TracBrowser for help on using the repository browser.