diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2015-04-17 17:55:24 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-04-17 17:55:24 +0200 |
commit | 71d127220b2469cc49e61b528e2c5c5548097b93 (patch) | |
tree | d45b8a3fdf8ddc244d951a41bf281a46cf447d2c /test | |
parent | 7827d4954cea5b4fcfce3f245aae2e8c66e0ccb2 (diff) | |
download | qtlocation-mapboxgl-71d127220b2469cc49e61b528e2c5c5548097b93.tar.gz |
rename Mode::Static => Mode::Still
Diffstat (limited to 'test')
-rw-r--r-- | test/api/repeated_render.cpp | 2 | ||||
-rw-r--r-- | test/api/set_style.cpp | 2 | ||||
-rw-r--r-- | test/headless/headless.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/api/repeated_render.cpp b/test/api/repeated_render.cpp index 16688ec36f..25a5d5d28f 100644 --- a/test/api/repeated_render.cpp +++ b/test/api/repeated_render.cpp @@ -24,7 +24,7 @@ TEST(API, RepeatedRender) { Map map(view, fileSource); - map.start(Map::Mode::Static); + map.start(Map::Mode::Still); { view.resize(128, 512, 1); diff --git a/test/api/set_style.cpp b/test/api/set_style.cpp index 973989d1c8..11921a43ce 100644 --- a/test/api/set_style.cpp +++ b/test/api/set_style.cpp @@ -18,7 +18,7 @@ TEST(API, SetStyle) { Map map(view, fileSource); - map.start(Map::Mode::Static); + map.start(Map::Mode::Still); map.setStyleJSON("invalid", "test/suite"); diff --git a/test/headless/headless.cpp b/test/headless/headless.cpp index 4ce9b668f1..cccd0d44bd 100644 --- a/test/headless/headless.cpp +++ b/test/headless/headless.cpp @@ -145,7 +145,7 @@ TEST_P(HeadlessTest, render) { DefaultFileSource fileSource(nullptr); Map map(view, fileSource); - map.start(Map::Mode::Static); + map.start(Map::Mode::Still); map.setClasses(classes); map.setStyleJSON(style, "test/suite"); |