diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-29 17:31:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-29 17:45:48 +0300 |
commit | a57d736348be038bcc1371b05dbc89459f87d045 (patch) | |
tree | 17b07752ede14f4e3ac2ef1a3d11284a0bbcaddf /data/graphics | |
parent | 9234bf25b145995d5395f98a1f5dd030783d25d6 (diff) | |
download | plus-a57d736348be038bcc1371b05dbc89459f87d045.tar.gz plus-a57d736348be038bcc1371b05dbc89459f87d045.tar.bz2 plus-a57d736348be038bcc1371b05dbc89459f87d045.tar.xz plus-a57d736348be038bcc1371b05dbc89459f87d045.zip |
Add icons to quests window.
Fix memory leak in extendednamesmodel.
Diffstat (limited to 'data/graphics')
-rw-r--r-- | data/graphics/gui/CMakeLists.txt | 2 | ||||
-rw-r--r-- | data/graphics/gui/Makefile.am | 2 | ||||
-rw-r--r-- | data/graphics/gui/complete_icon.xml | 5 | ||||
-rw-r--r-- | data/graphics/gui/incomplete_icon.xml | 5 |
4 files changed, 14 insertions, 0 deletions
diff --git a/data/graphics/gui/CMakeLists.txt b/data/graphics/gui/CMakeLists.txt index 4fdc0f805..c192fc4af 100644 --- a/data/graphics/gui/CMakeLists.txt +++ b/data/graphics/gui/CMakeLists.txt @@ -11,12 +11,14 @@ SET (FILES circle-off.xml circle-on.xml colors.xml + complete_icon.xml dropdown.xml dropdown_background.xml dropdown_pressed.xml emote_selection.xml equipment_playerbox.xml equipmentbox.png + incomplete_icon.xml item_selection.xml item_shortcut_background.xml mouse.png diff --git a/data/graphics/gui/Makefile.am b/data/graphics/gui/Makefile.am index 5d442eebf..4718081a4 100644 --- a/data/graphics/gui/Makefile.am +++ b/data/graphics/gui/Makefile.am @@ -14,12 +14,14 @@ gui_DATA = \ circle-off.xml \ circle-on.xml \ colors.xml \ + complete_icon.xml \ dropdown.xml \ dropdown_background.xml \ dropdown_pressed.xml \ emote_selection.xml \ equipment_playerbox.xml \ equipmentbox.png \ + incomplete_icon.xml \ item_selection.xml \ item_shortcut_background.xml \ mouse.png \ diff --git a/data/graphics/gui/complete_icon.xml b/data/graphics/gui/complete_icon.xml new file mode 100644 index 000000000..344503247 --- /dev/null +++ b/data/graphics/gui/complete_icon.xml @@ -0,0 +1,5 @@ +<skinset name="Default" image="window.png"> + <widget type="Window"> + <part type="standart" xpos="42" ypos="222" width="16" height="16" /> + </widget> +</skinset> diff --git a/data/graphics/gui/incomplete_icon.xml b/data/graphics/gui/incomplete_icon.xml new file mode 100644 index 000000000..23e97ec28 --- /dev/null +++ b/data/graphics/gui/incomplete_icon.xml @@ -0,0 +1,5 @@ +<skinset name="Default" image="window.png"> + <widget type="Window"> + <part type="standart" xpos="60" ypos="222" width="16" height="16" /> + </widget> +</skinset> |