diff options
author | Mattes D <github@xoft.cz> | 2014-10-27 23:58:09 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-27 23:58:09 +0100 |
commit | c53b7e5d38c24bce7ba55abf3060ffd012783086 (patch) | |
tree | e592eeadadbd41cede746f8729bd70c275552eb5 /Tools/QtBiomeVisualiser/BiomeView.h | |
parent | Fixed typo. (diff) | |
download | cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar.gz cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar.bz2 cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar.lz cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar.xz cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.tar.zst cuberite-c53b7e5d38c24bce7ba55abf3060ffd012783086.zip |
Diffstat (limited to 'Tools/QtBiomeVisualiser/BiomeView.h')
-rw-r--r-- | Tools/QtBiomeVisualiser/BiomeView.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/QtBiomeVisualiser/BiomeView.h b/Tools/QtBiomeVisualiser/BiomeView.h index 40d8b96ae..9901b8f24 100644 --- a/Tools/QtBiomeVisualiser/BiomeView.h +++ b/Tools/QtBiomeVisualiser/BiomeView.h @@ -2,7 +2,7 @@ #include <QWidget> #include <memory> -#include "ChunkCache.h" +#include "RegionCache.h" #include "ChunkSource.h" @@ -51,8 +51,8 @@ public slots: /** Redraw the entire widget area. */ void redraw(); - /** A specified chunk has become available, redraw it. */ - void chunkAvailable(int a_ChunkX, int a_ChunkZ); + /** A specified region has become available, redraw it. */ + void regionAvailable(int a_RegionX, int a_RegionZ); /** Reloads the current chunk source and redraws the entire workspace. */ void reload(); @@ -62,7 +62,7 @@ protected: double m_Zoom; /** Cache for the loaded chunk data. */ - ChunkCache m_Cache; + RegionCache m_Cache; /** The entire view's contents in an offscreen image. */ QImage m_Image; |