Skip to content

Commit 43a2e41

Browse files
author
homann
committedJan 28, 2007
Removed ISO C++ ambiguity
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6469 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 100273f commit 43a2e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/spit/qgsshapefile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ bool QgsShapeFile::insertLayer(QString dbname, QString schema, QString geom_col,
279279
char * esc_str = new char[column_names[n].length()*2+1];
280280

281281
PQescapeString(esc_str, (const char *)column_names[n].lower(), column_names[n].length());
282-
QgsDebugMsg("Escaped " + column_names[n] + " to " + esc_str);
282+
QgsDebugMsg("Escaped " + QString(column_names[n]) + " to " + QString(esc_str));
283283
query += esc_str;
284284
query += " " + column_types[n];
285285

0 commit comments

Comments
 (0)
Please sign in to comment.