Changed: Minor changes

--HG--
branch : compatibility-develop
hg/compatibility-develop
kervala 7 years ago
parent 5a7e143f55
commit 2f3a5f2606

@ -97,7 +97,7 @@ namespace NLGUI
CURLINFO info; CURLINFO info;
#if defined(CURL_AT_LEAST_VERSION) && CURL_AT_LEAST_VERSION(7, 48, 0) #if CURL_AT_LEAST_VERSION(7, 48, 0)
info = CURLINFO_TLS_SSL_PTR; info = CURLINFO_TLS_SSL_PTR;
#else #else
info = CURLINFO_TLS_SESSION; info = CURLINFO_TLS_SESSION;

@ -4448,7 +4448,7 @@ namespace NLGUI
string buttonTemplate = DefaultButtonGroup; string buttonTemplate = DefaultButtonGroup;
// Action handler parameters : "name=group_html_id|form=id_of_the_form|submit_button=button_name" // Action handler parameters : "name=group_html_id|form=id_of_the_form|submit_button=button_name"
string param = "name=" + this->_Id + "|url=" + getLink(); string param = "name=" + this->_Id + "|url=" + getLink();
string name = ""; string name;
if (!_AnchorName.empty()) if (!_AnchorName.empty())
name = _AnchorName.back(); name = _AnchorName.back();
typedef pair<string, string> TTmplParam; typedef pair<string, string> TTmplParam;

@ -167,17 +167,17 @@ namespace INVENTORIES
pet_animal5, pet_animal5,
pet_animal6, pet_animal6,
pet_animal7, pet_animal7,
max_pet_animal, // 10 max_pet_animal, // 11
NUM_INVENTORY = max_pet_animal, // 10 NUM_INVENTORY = max_pet_animal, // 11
UNDEFINED = NUM_INVENTORY, // 10 UNDEFINED = NUM_INVENTORY, // 11
exchange, // 11 This is not a bug : exchange is a fake inventory exchange, // 12 This is not a bug : exchange is a fake inventory
exchange_proposition, // 12 and should not count in the number of inventory exchange_proposition, // 13 and should not count in the number of inventory
// same for botChat trading. // same for botChat trading.
trading, // 13 trading, // 14
reward_sharing, // 14 fake inventory, not in database.xml. Used by the item info protocol only reward_sharing, // 15 fake inventory, not in database.xml. Used by the item info protocol only
guild, // 15 (warning: number stored in guild saved file) guild, // 16 (warning: number stored in guild saved file)
player_room, // 16 player_room, // 17
NUM_ALL_INVENTORY // warning: distinct from NUM_INVENTORY NUM_ALL_INVENTORY // warning: distinct from NUM_INVENTORY
}; };

Loading…
Cancel
Save