openshot:: prefixing as needed for SWIG

It turns out SWIG is a lot pickier than GCC about namespaces, and
requires a lot more `openshot::` prefixing in our headers, if we
eliminate the `using namespace...` statements from them.
This commit is contained in:
FeRD (Frank Dana)
2019-08-05 02:17:22 -04:00
parent ce8ff07fd3
commit 3ce85d0fff
19 changed files with 146 additions and 146 deletions

View File

@@ -252,11 +252,11 @@ void ReaderBase::SetJsonValue(Json::Value root) {
}
/// Parent clip object of this reader (which can be unparented and NULL)
ClipBase* ReaderBase::GetClip() {
openshot::ClipBase* ReaderBase::GetClip() {
return parent;
}
/// Set parent clip object of this reader
void ReaderBase::SetClip(ClipBase* clip) {
void ReaderBase::SetClip(openshot::ClipBase* clip) {
parent = clip;
}