Changeset 997 for XmlTools2/trunk
- Timestamp:
- Apr 25, 2014, 6:14:22 PM (11 years ago)
- Location:
- XmlTools2/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
XmlTools2/trunk/readme.txt
r973 r997 1 1 Readme.txt 2 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 XmlTools v2.0 a3 XmlTools v2.0b 4 4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 5 … … 62 62 Change Log: 63 63 ---------------------------------- 64 2.0b, 25-04-2014 65 -Minor code fixes (use of singleton pattern) 66 -Fixed segmentation fault when providing a non-existing element name in patch files operations 67 ---------------------------------- 64 68 2.0a, 02-03-2014 65 69 -Added multithreading support for @CUSTOM_CODE (performance may increase over 3 times in a quadcore) -
XmlTools2/trunk/xmlpatch.cpp
r980 r997 77 77 } 78 78 79 if(nodesToInsertion [0].type()==pugi::node_null){79 if(nodesToInsertion.isEmpty() || nodesToInsertion[0].type()==pugi::node_null){ 80 80 81 81 QString errMessage; … … 138 138 } 139 139 140 if(nodesToDeletion [0].type()==pugi::node_null){140 if(nodesToDeletion.isEmpty() || nodesToDeletion[0].type()==pugi::node_null){ 141 141 142 142 QString errMessage;
Note:
See TracChangeset
for help on using the changeset viewer.