James Chen
|
b2dc16c065
|
closed #3580: FileUtilsTest->TextWritePlist crashes
|
2014-01-04 15:03:46 +08:00 |
James Chen
|
9342ae105a
|
issue #3577: const_iterator —> iterator for Vector::erase(first, last). Makes android build happy.
|
2014-01-04 11:41:06 +08:00 |
James Chen
|
ebf6d07720
|
issue #3577: iterator —> const_iterator since Map::getRandomObject is a const function.
|
2014-01-04 11:41:05 +08:00 |
andyque
|
88efbfc9cc
|
remove srand function call
|
2014-01-03 11:56:58 +08:00 |
andyque
|
774542a341
|
fix compile error of getRandomObject in map
and add srand to vector and map
|
2014-01-03 11:53:16 +08:00 |
andyque
|
67153f816c
|
remove unused code
|
2014-01-03 10:44:43 +08:00 |
andyque
|
0e90ef8337
|
fix move assignment operator doesn't clear previous content bug
|
2014-01-03 10:39:53 +08:00 |
andyque
|
75d5bcfb42
|
remove const modifier of move semantic
|
2014-01-02 18:05:22 +08:00 |
andyque
|
80adda2ce8
|
fixed self assignment error and provide move semantics to pushBack of Vector<T>
|
2014-01-02 17:54:52 +08:00 |
minggo
|
ec3b3ea012
|
Merge pull request #4696 from dumganhar/warning-fix
Some warning fixes on linux.
|
2013-12-27 01:56:47 -08:00 |
James Chen
|
012e7f6618
|
Merge pull request #4698 from dumganhar/map-fix
Removes Map<K, V>::capacity(), adds Map<K, V>::bucketCount/bucketSize/bucket methods.
|
2013-12-27 00:09:21 -08:00 |
James Chen
|
3ee48fc1ca
|
Map::bucketSize fix.
|
2013-12-27 15:50:48 +08:00 |
James Chen
|
0d4a816e3b
|
Removes Map<K, V>::capacity(), adds Map<K, V>::bucketCount/bucketSize/bucket methods.
|
2013-12-27 15:44:23 +08:00 |
byeonggee.seo
|
b9d56ae793
|
CCData bugfix
|
2013-12-27 16:34:00 +09:00 |
James Chen
|
febc19ea8d
|
Some warning fixes on linux.
|
2013-12-26 23:06:16 -08:00 |
Dhilan007
|
861925e752
|
fix compiling error in vs project on win7.
|
2013-12-27 14:38:22 +08:00 |
luocker
|
fc655162fa
|
Update CCString.cpp
we can't change _string value after get Array.
|
2013-12-27 00:26:02 +08:00 |
James Chen
|
17ff6ef764
|
Renames: IntValueMap —> ValueMapIntKey
|
2013-12-26 22:07:20 +08:00 |
James Chen
|
a8d93ddf72
|
Restricts the element type for Vector<T> and Map<K, V>, it has to be `Object*` or `ObjectSubClass*`.
|
2013-12-26 21:49:40 +08:00 |
James Chen
|
55b0ef85d8
|
Merge pull request #4631 from boyu0/const_char_star_to_std_string
Change const char* to const std::string&
|
2013-12-24 22:34:34 -08:00 |
James Chen
|
6fce4f9061
|
Don’t use ‘String::createWithFormat’ in our codes, use StringUtils::format() instead.
|
2013-12-25 11:00:51 +08:00 |
boyu0
|
62fc889a54
|
Merge branch 'develop' of https://github.com/cocos2d/cocos2d-x into const_char_star_to_std_string
Conflicts:
cocos/2d/platform/CCFileUtils.cpp
cocos/2d/platform/CCFileUtils.h
cocos/2d/platform/CCImageCommon_cpp.h
cocos/2d/platform/CCSAXParser.cpp
cocos/2d/platform/CCSAXParser.h
|
2013-12-25 10:41:37 +08:00 |
boyu0
|
3344c5243c
|
change some const char* to const std::string&
|
2013-12-24 10:51:47 +08:00 |
James Chen
|
4ed988b8c5
|
Fixes linux build failure.
|
2013-12-23 13:45:31 +08:00 |
James Chen
|
b504d817b5
|
Small bug fix in CCData.
|
2013-12-20 21:41:20 +08:00 |
James Chen
|
21a9f05110
|
Merge branch 'develop' of git://github.com/cocos2d/cocos2d-x into data-refactor
Conflicts:
cocos/2d/CCUserDefault.cpp
cocos/2d/CCUserDefault.mm
cocos/2d/CCUserDefaultAndroid.cpp
cocos/2d/ZipUtils.cpp
cocos/2d/platform/CCFileUtils.h
cocos/2d/platform/CCSAXParser.cpp
|
2013-12-20 21:12:11 +08:00 |
James Chen
|
3dba88c5c9
|
#include <algorithm> for std::find in CCVector.h.
|
2013-12-20 10:12:07 +08:00 |
Ricardo Quesada
|
59fee6b8d2
|
replaces std::for_each with for()
replaces `std::for_each` with C++11 `for( : )`
|
2013-12-19 13:34:41 -08:00 |
James Chen
|
ddc1328e6b
|
Small fix in CCValue.cpp. visitMap is a template that supports IntValueMap and ValueMap. IntValueMap is confused. ValueMapIntKey seems better.
|
2013-12-18 17:01:57 +08:00 |
James Chen
|
2892e8be3f
|
Refactors Data class, adds FileUtils::getStringFromFile, FileUtils::getDataFromFile and deprecates FileUtils::getFileData.
|
2013-12-18 14:58:17 +08:00 |
James Chen
|
3829f841e7
|
Small fix for Vector::insert(const Vector<T>& other), renames it to Vector::pushBack(const Vector<T>& other).
|
2013-12-17 18:09:07 +08:00 |
James Chen
|
c85f9877bb
|
Reverts Vector::eraseObject, not need to return iterator.
|
2013-12-17 17:54:38 +08:00 |
James Chen
|
d16fa07661
|
Removes Vector<T>::forEach, please use std::for_each instead. The same as Vector<T>::sort.
|
2013-12-17 17:45:29 +08:00 |
Ricardo Quesada
|
3838268fd0
|
Merge branch 'develop' into newRenderer
|
2013-12-14 19:28:01 -08:00 |
James Chen
|
bb5ef615dd
|
Merge branch 'develop' of git://github.com/cocos2d/cocos2d-x into pr4479
Conflicts:
cocos/2d/CCSpriteBatchNode.h
|
2013-12-13 16:44:22 +08:00 |
Ricardo Quesada
|
61cc365d9e
|
Merge branch 'develop' into newRenderer
Conflicts:
cocos/2d/CCGLProgram.h
cocos/2d/CCLabelTTF.h
|
2013-12-12 14:41:42 -08:00 |
Ricardo Quesada
|
a8c317bd83
|
getDescription() works as expected
renames `description` to `getDescription`. Adds `virtual` to it.
Adds `getDescription` to missing nodes.
|
2013-12-12 14:30:22 -08:00 |
Ricardo Quesada
|
29a15c885a
|
Merge branch 'develop' into newRenderer
|
2013-12-12 11:44:09 -08:00 |
minggo
|
21e2b341f1
|
fix compiling error after fixing conflicts
|
2013-12-12 14:59:33 +08:00 |
minggo
|
16efe94946
|
fix compiling error after fixing conflicts
|
2013-12-12 14:48:27 +08:00 |
minggo
|
1e9c763b40
|
use ssize_t for index and capacity
|
2013-12-12 14:48:26 +08:00 |
minggo
|
ab23b47043
|
use ssize_t for capacity and index in containers
|
2013-12-12 14:48:26 +08:00 |
James Chen
|
3649c12d37
|
issue #2790: Compilation error fix in CCMap.h.
|
2013-12-12 14:36:59 +08:00 |
James Chen
|
93bd45cefd
|
issue #2790: Adds comments for Vector<T>.
Signed-off-by: James Chen <jianhua.chen@cocos2d-x.org>
|
2013-12-12 14:22:49 +08:00 |
James Chen
|
3fc9c93102
|
issue #2790: Comment fix for Map<K, V>::clear.
Signed-off-by: James Chen <jianhua.chen@cocos2d-x.org>
|
2013-12-12 12:58:01 +08:00 |
James Chen
|
6264336809
|
issue #2790: Updates comments for Map<K, V> container.
Signed-off-by: James Chen <jianhua.chen@cocos2d-x.org>
|
2013-12-12 11:54:03 +08:00 |
James Chen
|
5c62fe8f3f
|
issue #2790: Reverts comments in CCString.h
|
2013-12-12 10:34:41 +08:00 |
James Chen
|
92a7aa03de
|
issue #2790: Reverts comments in CCDictionary.h
|
2013-12-12 09:53:50 +08:00 |
James Chen
|
976bef8b68
|
issue #2790: StringUtils::toStringWithFormat —> StringUtils::format.
|
2013-12-12 09:37:56 +08:00 |
Ricardo Quesada
|
6d1abc7d4d
|
Merge branch 'develop' into newRenderer
|
2013-12-11 15:28:05 -08:00 |