[Cmake-commits] [cmake-commits] clinton committed CMakeSetupDialog.cxx 1.56 1.57

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Mar 30 10:56:49 EDT 2009


Update of /cvsroot/CMake/CMake/Source/QtDialog
In directory public:/mounts/ram/cvs-serv25996

Modified Files:
	CMakeSetupDialog.cxx 
Log Message:

ENH:  Add version info to about dialog, including Qt version.



Index: CMakeSetupDialog.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/QtDialog/CMakeSetupDialog.cxx,v
retrieving revision 1.56
retrieving revision 1.57
diff -C 2 -d -r1.56 -r1.57
*** CMakeSetupDialog.cxx	16 Dec 2008 20:00:17 -0000	1.56
--- CMakeSetupDialog.cxx	30 Mar 2009 14:56:43 -0000	1.57
***************
*** 38,41 ****
--- 38,42 ----
  #include "AddCacheEntry.h"
  #include "FirstConfigure.h"
+ #include "cmVersion.h"
  
  QCMakeThread::QCMakeThread(QObject* p) 
***************
*** 674,678 ****
  void CMakeSetupDialog::doAbout()
  {
!   QString msg = "CMake\nwww.cmake.org";
  
    QDialog dialog;
--- 675,684 ----
  void CMakeSetupDialog::doAbout()
  {
!   QString msg = "CMake %1\n"
!                 "Using Qt %2\n"
!                 "www.cmake.org";
! 
!   msg = msg.arg(cmVersion::GetCMakeVersion());
!   msg = msg.arg(qVersion());
  
    QDialog dialog;



More information about the Cmake-commits mailing list