Skip to content

Commit c8c802f

Browse files
committedOct 16, 2013
[osm] Fix missing nodes with 64-bit ID (#8865)
1 parent a865115 commit c8c802f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/analysis/openstreetmap/qgsosmbase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class ANALYSIS_EXPORT QgsOSMElement
3838

3939
// fetched automatically from DB
4040
QgsOSMElementID elemID() const { return mElemID; }
41-
int id() const { return mElemID.id; }
41+
QgsOSMId id() const { return mElemID.id; }
4242
//QString username() const;
4343
//QDateTime timestamp() const;
4444
//int version() const;

0 commit comments

Comments
 (0)
Please sign in to comment.