Skip to content

Commit 542f814

Browse files
author
Sandro Santilli
committedDec 7, 2012
Add minorVersion() method, fix doc of majorVersion()
1 parent 7b61b83 commit 542f814

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/providers/postgres/qgspostgresconn.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,12 @@ class QgsPostgresConn : public QObject
110110
//! encode wkb in hex
111111
bool useWkbHex() { return mUseWkbHex; }
112112

113-
//! major PostgreSQL version
113+
//! major PostGIS version
114114
int majorVersion() { return mPostgisVersionMajor; }
115115

116+
//! minor PostGIS version
117+
int minorVersion() { return mPostgisVersionMinor; }
118+
116119
//! PostgreSQL version
117120
int pgVersion() { return mPostgresqlVersion; }
118121

0 commit comments

Comments
 (0)
Please sign in to comment.