Skip to content

Commit

Permalink
[osm] Fix missing nodes with 64-bit ID (#8865)
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Oct 16, 2013
1 parent a865115 commit c8c802f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/openstreetmap/qgsosmbase.h
Expand Up @@ -38,7 +38,7 @@ class ANALYSIS_EXPORT QgsOSMElement

// fetched automatically from DB
QgsOSMElementID elemID() const { return mElemID; }
int id() const { return mElemID.id; }
QgsOSMId id() const { return mElemID.id; }
//QString username() const;
//QDateTime timestamp() const;
//int version() const;
Expand Down

0 comments on commit c8c802f

Please sign in to comment.