mirror of https://github.com/axmolengine/axmol.git
Fixed #3806: Change parameters to const &
This commit is contained in:
parent
30f07ccdea
commit
d6df71cc11
|
@ -1 +1 @@
|
|||
dea5bcbebbf752ba772f51e43378cce95f8806f2
|
||||
78c55aef49f55476255cc9ee58d5c1e860933b0f
|
|
@ -216,13 +216,13 @@ public:
|
|||
|
||||
cocos2d::SAXParser* getParser();
|
||||
|
||||
std::string parse(std::string path);
|
||||
std::string parse(const std::string& path);
|
||||
|
||||
bool preloadPlist(std::string path) {
|
||||
bool preloadPlist(const std::string& path) {
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string getList(std::string path) {
|
||||
std::string getList(const std::string& path) {
|
||||
return path;
|
||||
}
|
||||
|
||||
|
|
|
@ -105,14 +105,13 @@ skip = Node::[^setPosition$ setGLServerState description getUserObject .*UserDat
|
|||
TextureCache::[addPVRTCImage addImageAsync],
|
||||
Timer::[getSelector createWithScriptHandler],
|
||||
*::[copyWith.* onEnter.* onExit.* ^description$ getObjectType onTouch.* onAcc.* onKey.* onRegisterTouchListener],
|
||||
FileUtils::[(g|s)etSearchResolutionsOrder$ (g|s)etSearchPaths$ getFileData getDataFromFile getFullPathCache],
|
||||
FileUtils::[(g|s)etSearchResolutionsOrder$ (g|s)etSearchPaths$ getFileData getDataFromFile getWritablePath setPopupNotify destroyInstance getFullPathCache],
|
||||
Application::[^application.* ^run$],
|
||||
Camera::[getEyeXYZ getCenterXYZ getUpXYZ],
|
||||
ccFontDefinition::[*],
|
||||
NewTextureAtlas::[*],
|
||||
RenderTexture::[listenToBackground listenToForeground]
|
||||
|
||||
|
||||
rename_functions = SpriteFrameCache::[addSpriteFramesWithFile=addSpriteFrames getSpriteFrameByName=getSpriteFrame],
|
||||
MenuItemFont::[setFontNameObj=setFontName setFontSizeObj=setFontSize getFontSizeObj=getFontSize getFontNameObj=getFontName],
|
||||
ProgressTimer::[setReverseProgress=setReverseDirection],
|
||||
|
@ -120,7 +119,7 @@ rename_functions = SpriteFrameCache::[addSpriteFramesWithFile=addSpriteFrames ge
|
|||
LayerGradient::[initWithColor=init],
|
||||
LayerColor::[initWithColor=init],
|
||||
GLProgram::[initWithVertexShaderByteArray=initWithString initWithVertexShaderFilename=init programLog=getProgramLog setUniformLocationWith1i=setUniformLocationI32],
|
||||
Node::[removeFromParentAndCleanup=removeFromParent removeAllChildrenWithCleanup=removeAllChildren],
|
||||
Node::[removeFromParentAndCleanup=removeFromParent removeAllChildrenWithCleanup=removeAllChildren getLocalZOrder=getZOrder],
|
||||
LabelAtlas::[create=_create],
|
||||
Sprite::[initWithFile=init],
|
||||
SpriteBatchNode::[initWithFile=init removeAllChildrenWithCleanup=removeAllChildren],
|
||||
|
|
Loading…
Reference in New Issue