|
|
|
@ -1,14 +1,20 @@
@@ -1,14 +1,20 @@
|
|
|
|
|
#include "aboutdialog.h" |
|
|
|
|
#include "ui_aboutdialog.h" |
|
|
|
|
|
|
|
|
|
#include "clientmodel.h" |
|
|
|
|
|
|
|
|
|
#include "version.h" |
|
|
|
|
// Copyright year (2009-this)
|
|
|
|
|
// Todo: update this when changing our copyright comments in the source
|
|
|
|
|
const int ABOUTDIALOG_COPYRIGHT_YEAR = 2013; |
|
|
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget *parent) : |
|
|
|
|
QDialog(parent), |
|
|
|
|
ui(new Ui::AboutDialog) |
|
|
|
|
{ |
|
|
|
|
ui->setupUi(this); |
|
|
|
|
|
|
|
|
|
// Set current copyright year
|
|
|
|
|
ui->copyrightLabel->setText(tr("Copyright") + QString(" © ") + tr("2009-%1 The Bitcoin developers").arg(ABOUTDIALOG_COPYRIGHT_YEAR)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void AboutDialog::setModel(ClientModel *model) |
|
|
|
|