Skip to content

Commit

Permalink
Use GitHub project URL
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Apr 3, 2019
1 parent 2c0489d commit 613ccf2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/mainpage.dox
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/// primes using next_prime() or prev_prime() and storing primes in /// primes using next_prime() or prev_prime() and storing primes in
/// a vector or an array. /// a vector or an array.
/// ///
/// For more information please visit https://primesieve.org. /// For more information please visit https://github.com/kimwalisch/primesieve.
/// ///
/// @section CPP_API C++ API /// @section CPP_API C++ API
/// ///
Expand Down
2 changes: 1 addition & 1 deletion src/console/help.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void help()
void version() void version()
{ {
cout << "primesieve " << primesieve::primesieve_version(); cout << "primesieve " << primesieve::primesieve_version();
cout << ", <https://primesieve.org>" << endl; cout << ", <https://github.com/kimwalisch/primesieve>" << endl;
cout << "Copyright (C) 2010 - 2019 Kim Walisch" << endl << endl; cout << "Copyright (C) 2010 - 2019 Kim Walisch" << endl << endl;
cout << "BSD 2-Clause License <https://opensource.org/licenses/BSD-2-Clause>" << endl; cout << "BSD 2-Clause License <https://opensource.org/licenses/BSD-2-Clause>" << endl;
exit(0); exit(0);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/src/PrimeSieveGUI.hpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const quint64 UPPER_BOUND_LIMIT = std::numeric_limits<uint64_t>::max();


const QString UPPER_BOUND_STR = QString::number(UPPER_BOUND_LIMIT); const QString UPPER_BOUND_STR = QString::number(UPPER_BOUND_LIMIT);
const QString APPLICATION_NAME("primesieve"); const QString APPLICATION_NAME("primesieve");
const QString APPLICATION_HOMEPAGE("https://primesieve.org"); const QString APPLICATION_HOMEPAGE("https://github.com/kimwalisch/primesieve");


const QString APPLICATION_ABOUT( const QString APPLICATION_ABOUT(
"<p>Copyright &copy; 2019 Kim Walisch</p>" "<p>Copyright &copy; 2019 Kim Walisch</p>"
Expand Down

0 comments on commit 613ccf2

Please sign in to comment.