Skip to content

Commit

Permalink
fix bad type
Browse files Browse the repository at this point in the history
  • Loading branch information
vcloarec authored and nyalldawson committed Nov 27, 2022
1 parent 4f824ef commit 36157da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/mesh/qgsmeshdatasetgroupstore.cpp
Expand Up @@ -698,7 +698,7 @@ bool QgsMeshExtraDatasetStore::hasTemporalCapabilities() const
return mTemporalCapabilities->hasTemporalCapabilities();
}

quint64 QgsMeshExtraDatasetStore::datasetRelativeTime( QgsMeshDatasetIndex index ) const
qint64 QgsMeshExtraDatasetStore::datasetRelativeTime( QgsMeshDatasetIndex index ) const
{
return mTemporalCapabilities->datasetTime( index );
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/mesh/qgsmeshdatasetgroupstore.h
Expand Up @@ -47,7 +47,7 @@ class QgsMeshExtraDatasetStore: public QgsMeshDatasetSourceInterface
bool hasTemporalCapabilities() const;

//! Returns the relative times of the dataset index with \a index, returned value in milliseconds
quint64 datasetRelativeTime( QgsMeshDatasetIndex index ) const;
qint64 datasetRelativeTime( QgsMeshDatasetIndex index ) const;

//! Returns information related to the dataset group with \a groupIndex
QString description( int groupIndex ) const;
Expand Down

0 comments on commit 36157da

Please sign in to comment.