Navigation Menu

Skip to content

Commit

Permalink
Removed ISO C++ ambiguity
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6469 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Jan 28, 2007
1 parent 100273f commit 43a2e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/spit/qgsshapefile.cpp
Expand Up @@ -279,7 +279,7 @@ bool QgsShapeFile::insertLayer(QString dbname, QString schema, QString geom_col,
char * esc_str = new char[column_names[n].length()*2+1];

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

Expand Down

0 comments on commit 43a2e41

Please sign in to comment.