source: mmcs/formexportmatrix.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: 477 bytes
Line 
1/*
2    realizado por Rodrigo Boet Agosto/2015
3*/
4#include "formexportmatrix.h"
5#include "ui_formexportmatrix.h"
6
7FormExportMatrix::FormExportMatrix(QWidget *parent) :
8    QWidget(parent,Qt::Tool),
9    ui(new Ui::FormExportMatrix)
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
17FormExportMatrix::~FormExportMatrix()
18{
19    delete ui;
20}
Note: See TracBrowser for help on using the repository browser.