imdb/tmdb: rename 'create' methods to 'getter' functions

For reasons of plausibility, name does not suggest a "Getter" function

upplement to: - imdb/tmdb: unify some funtions


Origin commit data
------------------
Branch: ni/coolstream
Commit: 6ab8142e6a
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-04-08 (Thu, 08 Apr 2021)



------------------
This commit was generated by Migit
This commit is contained in:
2021-04-08 17:31:07 +02:00
committed by vanhofen
parent 15e1be104e
commit e0bf8d1336
5 changed files with 12 additions and 12 deletions

View File

@@ -1198,8 +1198,8 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
epgText_saved = epgText;
epgText.clear();
tmdb_active = true;
epgTextSwitch = tmdb->CreateMovieText();
processTextToArray(tmdb->CreateEPGText(), 0, tmdb->hasPoster());
epgTextSwitch = tmdb->getMovieText();
processTextToArray(tmdb->getEPGText(), 0, tmdb->hasPoster());
textCount = epgText.size();
tmdb_stars = tmdb->getStars();
showText(showPos, sy + toph, tmdb->hasPoster());
@@ -1691,8 +1691,8 @@ int CEpgData::showIMDb(bool splash)
epgText.clear();
//data
epgTextSwitch = imdb->CreateMovieText();
processTextToArray(imdb->CreateEPGText(), 0, imdb->hasPoster());
epgTextSwitch = imdb->getMovieText();
processTextToArray(imdb->getEPGText(), 0, imdb->hasPoster());
textCount = epgText.size();