Changeset 55c4b858e9 in tspsg
- Timestamp:
- Sep 10, 2009, 12:14:22 AM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- bc1b8837b6
- Parents:
- bc691eca15
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/tspsg.rc
rbc691eca15 r55c4b858e9 39 39 BLOCK "000004b0" 40 40 BEGIN 41 // VALUE "Comments", BUILD_STATUS 41 VALUE "Comments", VERSIONID 42 42 VALUE "CompanyName", "..::Lёppsville::.. Homes" 43 43 VALUE "FileDescription", "TSPSG: TSP Solver and Generator" -
src/mainwindow.cpp
rbc691eca15 r55c4b858e9 502 502 about += QString::fromUtf8(" Runtime: %1\n").arg(qVersion()); 503 503 about += QString::fromUtf8("Built on %1 at %2\n").arg(__DATE__).arg(__TIME__); 504 about += QString::fromUtf8(VERSIONID"\n\n"); 505 about += QString::fromUtf8("Algorithm: %1\n").arg(CTSPSolver::getVersionId()); 504 506 about += "\n"; 505 507 about += "TSPSG is licensed under the terms of the GNU General Public License. You should have received a copy of the GNU General Public License along with TSPSG."; -
src/tspsolver.cpp
rbc691eca15 r55c4b858e9 243 243 } 244 244 245 QString CTSPSolver::getVersionId() 246 { 247 return QString("$Id$"); 248 } 249 245 250 bool CTSPSolver::isOptimal() const 246 251 { -
src/tspsolver.h
rbc691eca15 r55c4b858e9 50 50 bool isOptimal() const; 51 51 sStep *solve(int, tMatrix, QWidget *parent = 0); 52 static QString getVersionId(); 52 53 53 54 private: -
src/version.h
rbc691eca15 r55c4b858e9 25 25 #define VERSION_H 26 26 27 #define VERSIONID "$Id$" 27 28 #define BUILD_VERSION_MAJOR 0 28 29 #define BUILD_VERSION_MINOR 1
Note: See TracChangeset
for help on using the changeset viewer.