Fixed alpha for rectangles. Refactored the naming of private members (_myAtt to myAtt_). git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@96 620bd6b2-0a58-f614-fd9a-1bd335dccda9
21 lines
367 B
C++
21 lines
367 B
C++
/*
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
*/
|
|
|
|
#include "AboutDialog.h"
|
|
#include "ui_aboutDialog.h"
|
|
|
|
AboutDialog::AboutDialog(QWidget * parent) :
|
|
QDialog(parent)
|
|
{
|
|
ui_ = new Ui_aboutDialog();
|
|
ui_->setupUi(this);
|
|
ui_->label_version->setText(PROJECT_VERSION);
|
|
}
|
|
|
|
AboutDialog::~AboutDialog()
|
|
{
|
|
delete ui_;
|
|
}
|
|
|