File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 5
5
SET (SPIT_SRCS
6
6
qgsspit.cpp
7
7
../../providers/postgres/qgspgnewconnection.cpp
8
+ ../../providers/postgres/qgspostgresconn.cpp
8
9
qgspgutil.cpp
9
10
qgsshapefile.cpp
10
11
)
@@ -30,6 +31,7 @@ SET (SPIT_EXE_MOC_HDRS
30
31
qgsspit.h
31
32
qgsshapefile.h
32
33
../../providers/postgres/qgspgnewconnection.h
34
+ ../../providers/postgres/qgspostgresconn.h
33
35
)
34
36
35
37
SET (SPIT_PLUGIN_MOC_HDRS
Original file line number Diff line number Diff line change @@ -105,6 +105,12 @@ int QgsPostgresResult::PQftable( int col )
105
105
return ::PQftable ( mRes , col );
106
106
}
107
107
108
+ int QgsPostgresResult::PQftablecol ( int col )
109
+ {
110
+ Q_ASSERT ( mRes );
111
+ return ::PQftablecol ( mRes , col );
112
+ }
113
+
108
114
int QgsPostgresResult::PQftype ( int col )
109
115
{
110
116
Q_ASSERT ( mRes );
You can’t perform that action at this time.
0 commit comments