Skip to content

Commit

Permalink
peercoin started in 2012
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Jul 26, 2019
1 parent ff86379 commit 2322a63
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/man/peercoind.1
Expand Up @@ -470,7 +470,7 @@ Disable minting of POS blocks
.SH COPYRIGHT
Copyright \(co 2009\-2012 The Bitcoin Core developers
.br
Copyright \(co 20012\-2019 The Peercoin developers
Copyright \(co 2012\-2019 The Peercoin developers
.PP
Please contribute if you find Peercoin useful. Visit
<https://peercoin.net/> for further information about the software.
Expand Down
2 changes: 1 addition & 1 deletion src/init.cpp
Expand Up @@ -508,7 +508,7 @@ std::string LicenseInfo()
const std::string URL_SOURCE_CODE = "<https://github.com/peercoin/peercoin>";
const std::string URL_WEBSITE = "<https://peercoin.net/>";

return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2012, COPYRIGHT_YEAR) + " ") + "\n" +
"\n" +
strprintf(_("Please contribute if you find %s useful. "
"Visit %s for further information about the software."),
Expand Down
2 changes: 1 addition & 1 deletion src/qt/splashscreen.cpp
Expand Up @@ -44,7 +44,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle)
// define text to place
QString titleText = tr(PACKAGE_NAME);
QString versionText = QString("Version %1").arg(QString::fromStdString(FormatFullVersion()));
QString copyrightText = QString::fromUtf8(CopyrightHolders(strprintf("\xc2\xA9 %u-%u ", 2009, COPYRIGHT_YEAR)).c_str());
QString copyrightText = QString::fromUtf8(CopyrightHolders(strprintf("\xc2\xA9 %u-%u ", 2012, COPYRIGHT_YEAR)).c_str());
QString titleAddText = networkStyle->getTitleAddText();

QString font = QApplication::font().toString();
Expand Down
4 changes: 0 additions & 4 deletions src/util.cpp
Expand Up @@ -948,10 +948,6 @@ std::string CopyrightHolders(const std::string& strPrefix)
{
std::string strCopyrightHolders = strPrefix + strprintf(_(COPYRIGHT_HOLDERS), _(COPYRIGHT_HOLDERS_SUBSTITUTION));

// Check for untranslated substitution to make sure Bitcoin Core copyright is not removed by accident
if (strprintf(COPYRIGHT_HOLDERS, COPYRIGHT_HOLDERS_SUBSTITUTION).find("Bitcoin Core") == std::string::npos) {
strCopyrightHolders += "\n" + strPrefix + "The Bitcoin Core developers";
}
return strCopyrightHolders;
}

Expand Down

0 comments on commit 2322a63

Please sign in to comment.