Skip to content

Commit

Permalink
rename method SetHourWindow to silence compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
dekarl committed Jun 9, 2013
1 parent 22883be commit 5e020c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythbackend/backendhousekeeper.cpp
Expand Up @@ -446,10 +446,10 @@ bool JobQueueRecoverTask::DoRun(void)
MythFillDatabaseTask::MythFillDatabaseTask(void) :
DailyHouseKeeperTask("MythFillDB"), m_msMFD(NULL)
{
SetHourWindow();
SetHourWindowFromDB();
}

void MythFillDatabaseTask::SetHourWindow(void)
void MythFillDatabaseTask::SetHourWindowFromDB(void)
{
// we need to set the time window from database settings, so we cannot
// initialize these values in. grab them and set them afterwards
Expand Down
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/backendhousekeeper.h
Expand Up @@ -66,7 +66,7 @@ class MythFillDatabaseTask : public DailyHouseKeeperTask

virtual void Terminate(void);

void SetHourWindow(void);
void SetHourWindowFromDB(void);
private:
MythSystemLegacy *m_msMFD;
// bool m_running;
Expand Down

0 comments on commit 5e020c7

Please sign in to comment.