diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-07 20:38:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-24 00:08:35 +0300 |
commit | d1590377de1141144d59ca1160de2822177f6f2a (patch) | |
tree | a368b251dedc7164cadbfe459de4cf5c983acf98 /src/gui/windows/equipmentwindow.h | |
parent | 65422e722cfe0616c65498c71aa0651857dcc49a (diff) | |
download | manaplus-d1590377de1141144d59ca1160de2822177f6f2a.tar.gz manaplus-d1590377de1141144d59ca1160de2822177f6f2a.tar.bz2 manaplus-d1590377de1141144d59ca1160de2822177f6f2a.tar.xz manaplus-d1590377de1141144d59ca1160de2822177f6f2a.zip |
Add support for tinyxml2 for reading / writing xml files.
Diffstat (limited to 'src/gui/windows/equipmentwindow.h')
-rw-r--r-- | src/gui/windows/equipmentwindow.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/windows/equipmentwindow.h b/src/gui/windows/equipmentwindow.h index d45dc6a41..00db41fd8 100644 --- a/src/gui/windows/equipmentwindow.h +++ b/src/gui/windows/equipmentwindow.h @@ -114,13 +114,13 @@ class EquipmentWindow final : public Window, void addBox(const int idx, int x, int y, const int imageIndex); - void loadWindow(const XmlNodePtrConst windowNode); + void loadWindow(XmlNodeConstPtrConst windowNode); - void loadPage(const XmlNodePtr node); + void loadPage(XmlNodeConstPtr node); - void loadPlayerBox(const XmlNodePtr playerBoxNode, const int page); + void loadPlayerBox(XmlNodeConstPtr playerBoxNode, const int page); - void loadSlot(const XmlNodePtr slotNode, + void loadSlot(XmlNodeConstPtr slotNode, const ImageSet *const imageset, const int page); |