Skip to content

Commit

Permalink
Merge pull request PaycoinFoundation#467 from mitchellcash/copyright_…
Browse files Browse the repository at this point in the history
…year

Update the copyright strings visible in the Qt to 2016
  • Loading branch information
scroogemcdev committed Feb 16, 2016
2 parents f989eec + 478af1c commit 242319d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ The MIT License (MIT)

Copyright (c) 2009-2012 The Bitcoin developers
Copyright (c) 2011-2014 The Peercoin Developers
Copyright (c) 2014-2015 The Paycoin Developers
Copyright (c) 2014-2016 The Paycoin Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/aboutdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<property name="text">
<string>Copyright © 2009-2012 Bitcoin Developers
Copyright © 2011-2014 Peercoin Developers
Copyright © 2014-2015 Paycoin Developers</string>
Copyright © 2014-2016 Paycoin Developers</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/res/bitcoin-qt.rc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ BEGIN
VALUE "CompanyName", "Paycoin"
VALUE "FileDescription", "Paycoin-Qt (OSS GUI client for Paycoin)"
VALUE "InternalName", "paycoin-qt"
VALUE "LegalCopyright", "2014-2015 The Paycoin developers"
VALUE "LegalCopyright", "2014-2016 The Paycoin developers"
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
VALUE "OriginalFilename", "paycoin-qt.exe"
VALUE "ProductName", "Paycoin-Qt"
Expand Down
2 changes: 1 addition & 1 deletion src/qt/splashscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SplashScreen::SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f) :
// define text to place
QString titleText = QString(QApplication::applicationName()).replace(QString("-testnet"), QString(""), Qt::CaseSensitive); // cut of testnet, place it as single object further down
QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion()));
QString copyrightText = QChar(0xA9)+QString(" 2014-2015 ") + QString(tr("The Paycoin developers"));
QString copyrightText = QChar(0xA9)+QString(" 2014-2016 ") + QString(tr("The Paycoin developers"));
QString testnetAddText = QString(tr("[testnet]")); // define text to place as single text object

QString font = "Arial";
Expand Down

0 comments on commit 242319d

Please sign in to comment.