diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-11-21 21:13:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-01 22:58:18 +0300 |
commit | 04916c1b451e4400a496ae210b3faa10154c65ac (patch) | |
tree | fe7414434dcb6bcc1405b0d608d82348bc3ca466 /src/gui/widgets/button.h | |
parent | d48e360ea40536e9f3e7fb4ce381b7fdc2ee5954 (diff) | |
download | plus-04916c1b451e4400a496ae210b3faa10154c65ac.tar.gz plus-04916c1b451e4400a496ae210b3faa10154c65ac.tar.bz2 plus-04916c1b451e4400a496ae210b3faa10154c65ac.tar.xz plus-04916c1b451e4400a496ae210b3faa10154c65ac.zip |
Add batch drawing for any images.
Add this drawing to Button.
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r-- | src/gui/widgets/button.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 25fa0da02..3e84eeafe 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -31,8 +31,8 @@ #include "localconsts.h" -class GraphicsVertexes; class Image; +class ImageCollection; class ImageSet; class ImageRect; class Skin; @@ -147,7 +147,7 @@ class Button final : public gcn::Button, std::string mDescription; unsigned mClickCount; int mTag; - GraphicsVertexes *mVertexes; + ImageCollection *mVertexes2; bool mRedraw; int mMode; int mXOffset; |