fix deprecation warnings

This commit is contained in:
Vadim Lopatin 2014-12-05 11:48:52 +03:00
parent f1b729ce44
commit d9163742a3
1 changed files with 4 additions and 4 deletions

View File

@ -457,8 +457,8 @@ private class GLImageCache {
destroy(_pages[i]);
_pages[i] = null;
}
_pages.clear();
_map.clear();
destroy(_pages);
destroy(_map);
}
/// draw cached item
void drawItem(uint objectId, Rect dstrc, Rect srcrc, uint color, int options, Rect * clip, int rotationAngle) {
@ -762,8 +762,8 @@ private class GLGlyphCache {
destroy(_pages[i]);
_pages[i] = null;
}
_pages.clear();
_map.clear();
destroy(_pages);
destroy(_map);
}
/// draw cached item
void drawItem(uint objectId, Rect dstrc, Rect srcrc, uint color, Rect * clip) {