greenhouse/src/AboutDialog.cpp
matlabbe 8e44f2bedf Added actions "Add object from scene/files..." on right-click in the objects panel (same behavior as those in Edit->...).
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
2012-04-04 18:15:51 +00:00

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_;
}