Refactoring WIP.

Changing the function naming convention from CamelCase to camelCase.

--HG--
branch : dev
This commit is contained in:
Martín Lucas Golini
2017-02-14 18:09:25 -03:00
parent 8eaff147d4
commit b36dd33246
204 changed files with 2299 additions and 2244 deletions

View File

@@ -28,7 +28,7 @@ EE_MAIN_FUNC int main (int argc, char * argv []) {
request.SetUri("/wiki/Main_Page");
// Creates an async http request
Http::Request asyncRequest( "/wiki/" + Version::GetCodename() );
Http::Request asyncRequest( "/wiki/" + Version::getCodename() );
http.SendAsyncRequest( cb::Make3( AsyncRequestCallback ), asyncRequest, Seconds( 5 ) );
} else {
@@ -55,7 +55,7 @@ EE_MAIN_FUNC int main (int argc, char * argv []) {
}
}
MemoryManager::ShowResults();
MemoryManager::showResults();
return EXIT_SUCCESS;
}