Commit 8b5d588d authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: EPGView: fix constness

parent cdb42f5c
...@@ -112,12 +112,12 @@ void EPGView::updateChannels() ...@@ -112,12 +112,12 @@ void EPGView::updateChannels()
mutex.unlock(); mutex.unlock();
} }
const QDateTime& EPGView::startTime() const QDateTime& EPGView::startTime() const
{ {
return m_startTime; return m_startTime;
} }
const QDateTime& EPGView::baseTime() const QDateTime& EPGView::baseTime() const
{ {
return m_baseTime; return m_baseTime;
} }
......
...@@ -58,8 +58,8 @@ public: ...@@ -58,8 +58,8 @@ public:
void setScale( double scaleFactor ); void setScale( double scaleFactor );
void updateStartTime(); void updateStartTime();
const QDateTime& startTime(); const QDateTime& startTime() const;
const QDateTime& baseTime(); const QDateTime& baseTime() const;
bool addEPGEvent( vlc_epg_event_t*, QString, bool ); bool addEPGEvent( vlc_epg_event_t*, QString, bool );
void removeEPGEvent( vlc_epg_event_t*, QString ); void removeEPGEvent( vlc_epg_event_t*, QString );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment