You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user