Subversion Repositories svn1

Rev

Rev 236 | Rev 257 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
139 david 1
#include "qmdialogteameditor.h"
2
#include "ui_qmdialogteameditor.h"
3
 
4
qmDialogTeamEditor::qmDialogTeamEditor(int team, QWidget *parent) :
5
    QDialog(parent),
6
    ui(new Ui::qmDialogTeamEditor)
7
{
255 - 8
    ui->setupUi( this, team);
139 david 9
}
10
 
11
qmDialogTeamEditor::~qmDialogTeamEditor()
12
{
13
    delete ui;
14
}