File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ public:
33
33
static const int QGIS_VERSION_INT;
34
34
// Release name
35
35
static const char* QGIS_RELEASE_NAME;
36
- // The subversion version
37
- static const char* QGIS_SVN_VERSION ;
36
+ // The development (GIT) version
37
+ static const char* QGIS_DEV_VERSION ;
38
38
39
39
// Enumerations
40
40
//
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ static void setTitleBarText_( QWidget & qgisApp )
274
274
275
275
if ( QString ( QGis::QGIS_VERSION ).endsWith ( " Trunk" ) )
276
276
{
277
- caption += QString ( " r %1" ).arg ( QGis::QGIS_SVN_VERSION );
277
+ caption += QString ( " %1" ).arg ( QGis::QGIS_DEV_VERSION );
278
278
}
279
279
else
280
280
{
Original file line number Diff line number Diff line change 28
28
// Version string
29
29
const char * QGis::QGIS_VERSION = VERSION;
30
30
31
+ // development version
32
+ const char * QGis::QGIS_DEV_VERSION = QGSVERSION;
33
+
31
34
// Version number used for comparing versions using the
32
35
// "Check QGIS Version" function
33
36
const int QGis::QGIS_VERSION_INT = VERSION_INT;
Original file line number Diff line number Diff line change 14
14
* (at your option) any later version. *
15
15
* *
16
16
***************************************************************************/
17
- /* $Id$ */
18
17
19
18
#ifndef QGIS_H
20
19
#define QGIS_H
@@ -39,8 +38,8 @@ class CORE_EXPORT QGis
39
38
static const int QGIS_VERSION_INT;
40
39
// Release name
41
40
static const char * QGIS_RELEASE_NAME;
42
- // The subversion version
43
- static const char * QGIS_SVN_VERSION ;
41
+ // The development version
42
+ static const char * QGIS_DEV_VERSION ;
44
43
45
44
// Enumerations
46
45
//
You can’t perform that action at this time.
0 commit comments