Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
3015add4
Commit
3015add4
authored
Sep 09, 2011
by
François Cartegnie
🤞
Browse files
qt: epgview: const correctness
parent
5d1047b3
Changes
2
Show whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/epg/EPGView.cpp
View file @
3015add4
...
...
@@ -104,7 +104,7 @@ const QDateTime& EPGView::baseTime()
return
m_baseTime
;
}
bool
EPGView
::
hasValidData
()
bool
EPGView
::
hasValidData
()
const
{
return
!
epgitemsByChannel
.
isEmpty
();
}
...
...
modules/gui/qt4/components/epg/EPGView.hpp
View file @
3015add4
...
...
@@ -66,7 +66,7 @@ public:
void
updateDuration
();
void
reset
();
void
cleanup
();
bool
hasValidData
();
bool
hasValidData
()
const
;
signals:
void
startTimeChanged
(
const
QDateTime
&
startTime
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment