More explicit prefixing in Qt/ and Player classes

This commit is contained in:
FeRD (Frank Dana)
2019-09-21 00:14:32 -04:00
parent 67934675eb
commit 6aebb10cea
11 changed files with 222 additions and 221 deletions

View File

@@ -63,12 +63,12 @@ void PlayerBase::Stop() {
}
// Get the current reader, such as a FFmpegReader
ReaderBase* PlayerBase::Reader() {
openshot::ReaderBase* PlayerBase::Reader() {
return reader;
}
// Set the current reader, such as a FFmpegReader
void PlayerBase::Reader(ReaderBase *new_reader) {
void PlayerBase::Reader(openshot::ReaderBase *new_reader) {
reader = new_reader;
}