diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2016-05-25 19:40:17 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2016-05-25 21:51:25 +0200 |
commit | c60fd0604aa0c15f92d19b0f58613ed050edea18 (patch) | |
tree | 8db7a63ad59ff46abb08005f57d2e92ce941b2bf /test | |
parent | e2bcea90fce8a1e05e517c615d21d845e955f53d (diff) | |
download | qtlocation-mapboxgl-c60fd0604aa0c15f92d19b0f58613ed050edea18.tar.gz |
[core] TileData::isReady() => TileData::isRenderable()
Diffstat (limited to 'test')
-rw-r--r-- | test/algorithm/mock.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/algorithm/mock.hpp b/test/algorithm/mock.hpp index 0faddcac7e..a1ee534f79 100644 --- a/test/algorithm/mock.hpp +++ b/test/algorithm/mock.hpp @@ -44,7 +44,7 @@ struct MockBucket {}; struct MockTileData { - bool isReady() { + bool isRenderable() { return ready; } |