Skip to content

Commit

Permalink
changed about dialog titles; upgrade to 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bollos00 committed Mar 12, 2022
1 parent b1ff099 commit 7f015b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
message(STATUS "Using CMake version ${CMAKE_VERSION}")
cmake_minimum_required(VERSION 3.1.0)
project(libremines
VERSION "1.9.0"
VERSION "1.9.1"
DESCRIPTION " A Free/Libre and Open Source Software Qt based Minesweeper game available for GNU/Linux, FreeBSD and Windows systems. "
HOMEPAGE_URL "https://github.com/Bollos00/LibreMines"
LANGUAGES "CXX"
Expand Down
4 changes: 2 additions & 2 deletions src/libreminesgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ void LibreMinesGui::vCreateGUI(const int width, const int height)
this, &LibreMinesGui::SLOT_showAboutDialog);

connect(actionAboutQt, &QAction::triggered,
[this](){ QMessageBox::aboutQt(this, "LibreMines"); });
[this](){ QMessageBox::aboutQt(this, "About Qt"); });

connect(actionGitHubHomePage, &QAction::triggered,
[](){ QDesktopServices::openUrl(QUrl("https://github.com/Bollos00/LibreMines")); });
Expand Down Expand Up @@ -1544,7 +1544,7 @@ void LibreMinesGui::SLOT_showAboutDialog()
"Get the source code of LibreMines on\n") +
"<" + QString(LIBREMINES_PROJECT_HOMEPAGE_URL) + ">";

QMessageBox::about(this, "LibreMines", text);
QMessageBox::about(this, "About LibreMines", text);
}

void LibreMinesGui::SLOT_showHighScores()
Expand Down

0 comments on commit 7f015b6

Please sign in to comment.