Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
8b5d588d
Commit
8b5d588d
authored
Mar 28, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: EPGView: fix constness
parent
cdb42f5c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/components/epg/EPGView.cpp
modules/gui/qt4/components/epg/EPGView.cpp
+2
-2
modules/gui/qt4/components/epg/EPGView.hpp
modules/gui/qt4/components/epg/EPGView.hpp
+2
-2
No files found.
modules/gui/qt4/components/epg/EPGView.cpp
View file @
8b5d588d
...
...
@@ -112,12 +112,12 @@ void EPGView::updateChannels()
mutex
.
unlock
();
}
const
QDateTime
&
EPGView
::
startTime
()
const
QDateTime
&
EPGView
::
startTime
()
const
{
return
m_startTime
;
}
const
QDateTime
&
EPGView
::
baseTime
()
const
QDateTime
&
EPGView
::
baseTime
()
const
{
return
m_baseTime
;
}
...
...
modules/gui/qt4/components/epg/EPGView.hpp
View file @
8b5d588d
...
...
@@ -58,8 +58,8 @@ public:
void
setScale
(
double
scaleFactor
);
void
updateStartTime
();
const
QDateTime
&
startTime
();
const
QDateTime
&
baseTime
();
const
QDateTime
&
startTime
()
const
;
const
QDateTime
&
baseTime
()
const
;
bool
addEPGEvent
(
vlc_epg_event_t
*
,
QString
,
bool
);
void
removeEPGEvent
(
vlc_epg_event_t
*
,
QString
);
...
...
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