source: mmcs/formcompararresultados.cpp @ fa3f7a3

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

agregada funcionabilidad de escenarios

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