Skip to content

Commit

Permalink
properly override gd::string setupPageInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Aug 24, 2023
1 parent 7894432 commit 95239fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/layers/LevelBrowserEndLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ void LevelBrowserEndLayer::loadListFailed(const char* test){

updateDisplay();
}
void LevelBrowserEndLayer::setupPageInfo(std::string, const char*){
void LevelBrowserEndLayer::setupPageInfo(gd::string, const char*){

}

Expand Down
2 changes: 1 addition & 1 deletion src/layers/LevelBrowserEndLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class LevelBrowserEndLayer : public CvoltonAlertLayerStub, public OnlineListDele

void loadListFinished(cocos2d::CCArray*, const char*);
void loadListFailed(const char*);
void setupPageInfo(std::string, const char*);
void setupPageInfo(gd::string, const char*);

void updateDisplay();
void onTimer(float dt);
Expand Down
2 changes: 1 addition & 1 deletion src/layers/LevelSearchViewLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ void LevelSearchViewLayer::loadListFailed(const char*) {
}
}

void LevelSearchViewLayer::setupPageInfo(std::string, const char*) {
void LevelSearchViewLayer::setupPageInfo(gd::string, const char*) {

}

Expand Down
2 changes: 1 addition & 1 deletion src/layers/LevelSearchViewLayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class LevelSearchViewLayer : public cocos2d::CCLayer, public OnlineListDelegate,

void loadListFinished(cocos2d::CCArray*, const char*);
void loadListFailed(const char*);
void setupPageInfo(std::string, const char*);
void setupPageInfo(gd::string, const char*);

void onSearchObjectFinished(const BISearchObject& searchObj);
void showInfoDialog();
Expand Down

0 comments on commit 95239fd

Please sign in to comment.