Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
f254831a
Commit
f254831a
authored
Mar 10, 2016
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Instance: remove redundant "virtual" keywords
parent
bd40c864
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
Instance.hxx
src/Instance.hxx
+4
-4
Partition.hxx
src/Partition.hxx
+3
-3
StateFile.hxx
src/StateFile.hxx
+1
-1
No files found.
src/Instance.hxx
View file @
f254831a
...
...
@@ -114,14 +114,14 @@ struct Instance final
private
:
#ifdef ENABLE_DATABASE
v
irtual
v
oid
OnDatabaseModified
()
override
;
v
irtual
v
oid
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
override
;
void
OnDatabaseModified
()
override
;
void
OnDatabaseSongRemoved
(
const
LightSong
&
song
)
override
;
#endif
#ifdef ENABLE_NEIGHBOR_PLUGINS
/* virtual methods from class NeighborListener */
v
irtual
v
oid
FoundNeighbor
(
const
NeighborInfo
&
info
)
override
;
v
irtual
v
oid
LostNeighbor
(
const
NeighborInfo
&
info
)
override
;
void
FoundNeighbor
(
const
NeighborInfo
&
info
)
override
;
void
LostNeighbor
(
const
NeighborInfo
&
info
)
override
;
#endif
/* callback for #idle_monitor */
...
...
src/Partition.hxx
View file @
f254831a
...
...
@@ -217,11 +217,11 @@ private:
void
OnQueueSongStarted
()
override
;
/* virtual methods from class PlayerListener */
v
irtual
v
oid
OnPlayerSync
()
override
;
v
irtual
v
oid
OnPlayerTagModified
()
override
;
void
OnPlayerSync
()
override
;
void
OnPlayerTagModified
()
override
;
/* virtual methods from class MixerListener */
v
irtual
v
oid
OnMixerVolumeChanged
(
Mixer
&
mixer
,
int
volume
)
override
;
void
OnMixerVolumeChanged
(
Mixer
&
mixer
,
int
volume
)
override
;
/* callback for #global_events */
void
OnGlobalEvent
(
unsigned
mask
);
...
...
src/StateFile.hxx
View file @
f254831a
...
...
@@ -76,7 +76,7 @@ private:
bool
IsModified
()
const
;
/* virtual methods from TimeoutMonitor */
v
irtual
v
oid
OnTimeout
()
override
;
void
OnTimeout
()
override
;
};
#endif
/* STATE_FILE_H */
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