diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-01 19:33:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-01 22:58:18 +0300 |
commit | 5238a8fd782d5dc703aa788126748050f0cd604e (patch) | |
tree | 45a8b26f6570057c071c586914ce4face58db643 /src/gui/widgets/popup.h | |
parent | 2cdc186cf733795f73c30f9c1d437562d6be6eb8 (diff) | |
download | plus-5238a8fd782d5dc703aa788126748050f0cd604e.tar.gz plus-5238a8fd782d5dc703aa788126748050f0cd604e.tar.bz2 plus-5238a8fd782d5dc703aa788126748050f0cd604e.tar.xz plus-5238a8fd782d5dc703aa788126748050f0cd604e.zip |
Add batch drawing to popup.
Diffstat (limited to 'src/gui/widgets/popup.h')
-rw-r--r-- | src/gui/widgets/popup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/popup.h b/src/gui/widgets/popup.h index bc2acffe3..ac4cc6e94 100644 --- a/src/gui/widgets/popup.h +++ b/src/gui/widgets/popup.h @@ -30,7 +30,7 @@ #include <guichan/mouselistener.hpp> #include <guichan/widgetlistener.hpp> -class GraphicsVertexes; +class ImageCollection; class Skin; class WindowContainer; @@ -177,7 +177,7 @@ class Popup : public Container, public gcn::MouseListener, int mPadding; /**< Holds the padding of the popup. */ Skin *mSkin; /**< Skin in use by this popup */ - GraphicsVertexes *mVertexes; + ImageCollection *mVertexes; bool mRedraw; }; |