mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 14:50:15 -05:00
ENH: Show version number in window title.
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
#include "cmDocumentation.h"
|
||||
#include "cmSystemTools.h"
|
||||
#include "cmake.h"
|
||||
#include "cmVersion.h"
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
static const char * cmDocumentationName[][3] =
|
||||
@@ -106,7 +107,9 @@ int main(int argc, char** argv)
|
||||
}
|
||||
|
||||
CMakeSetupDialog dialog;
|
||||
dialog.setWindowTitle(QApplication::applicationName());
|
||||
QString title = QString("CMake %1");
|
||||
title = title.arg(cmVersion::GetCMakeVersion().c_str());
|
||||
dialog.setWindowTitle(title);
|
||||
dialog.show();
|
||||
|
||||
// for now: args support specifying build and/or source directory
|
||||
|
||||
@@ -550,7 +550,7 @@ void CMakeSetupDialog::doDeleteCache()
|
||||
|
||||
void CMakeSetupDialog::doAbout()
|
||||
{
|
||||
QString msg = QApplication::applicationName() + "\nwww.cmake.org";
|
||||
QString msg = "CMake\nwww.cmake.org";
|
||||
|
||||
QDialog dialog;
|
||||
dialog.setWindowTitle(tr("About"));
|
||||
|
||||
Reference in New Issue
Block a user