source: mmcs/formpreciosnohomogeneos.cpp @ 04999c9

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

funcionabilidad de modelo de precios no homogéneos incorporada

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