mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-03 02:41:21 +02:00
imdb/tmdb: rename 'create' methods to 'getter' functions
For reasons of plausibility, name does not suggest a "Getter" function supplement to: - imdb/tmdb: unify some funtions
This commit is contained in:
@@ -1171,8 +1171,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 = !tmdb_active;
|
||||
epgTextSwitch = tmdb->CreateMovieText();
|
||||
processTextToArray(tmdb->CreateEPGText(), 0, tmdb->hasCover());
|
||||
epgTextSwitch = tmdb->getMovieText();
|
||||
processTextToArray(tmdb->getEPGText(), 0, tmdb->hasCover());
|
||||
textCount = epgText.size();
|
||||
stars = tmdb->getStars();
|
||||
showText(showPos, sy + toph, tmdb_active || (imdb_active && imdb->gotPoster()));
|
||||
@@ -1664,8 +1664,8 @@ int CEpgData::showIMDb(bool splash)
|
||||
epgText.clear();
|
||||
|
||||
//data
|
||||
epgTextSwitch = imdb->CreateMovieText();
|
||||
processTextToArray(imdb->CreateEPGText(), 0, imdb->gotPoster());
|
||||
epgTextSwitch = imdb->getMovieText();
|
||||
processTextToArray(imdb->getEPGText(), 0, imdb->gotPoster());
|
||||
|
||||
textCount = epgText.size();
|
||||
|
||||
|
Reference in New Issue
Block a user