summaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/World.cpp4
-rw-r--r--src/shared/World.hpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/World.cpp b/src/shared/World.cpp
index 235bda91..e0bff450 100644
--- a/src/shared/World.cpp
+++ b/src/shared/World.cpp
@@ -177,7 +177,7 @@ public:
SharedPtr<Serialisation::Serialiser> serialiser;
SharedPtr<Serialisation::Parser> parser;
SharedPtr<Store> store;
- LilvWorld lilv_world;
+ LilvWorld* lilv_world;
std::string jack_uuid;
};
@@ -210,7 +210,7 @@ Raul::Configuration* World::conf() { return _impl->conf;
LV2Features* World::lv2_features() { return _impl->lv2_features; }
#ifdef HAVE_LILV
-LilvWorld World::lilv_world() { return _impl->lilv_world; }
+LilvWorld* World::lilv_world() { return _impl->lilv_world; }
#endif
Sord::World* World::rdf_world() { return _impl->rdf_world; }
SharedPtr<LV2URIMap> World::uris() { return _impl->uris; }
diff --git a/src/shared/World.hpp b/src/shared/World.hpp
index 44e2478e..76f40442 100644
--- a/src/shared/World.hpp
+++ b/src/shared/World.hpp
@@ -29,7 +29,7 @@
#include "raul/Configuration.hpp"
#include "raul/SharedPtr.hpp"
-typedef struct _LilvWorld* LilvWorld;
+typedef struct LilvWorldImpl LilvWorld;
namespace Sord { class World; }
@@ -99,7 +99,7 @@ public:
virtual LV2Features* lv2_features();
- virtual LilvWorld lilv_world();
+ virtual LilvWorld* lilv_world();
virtual void set_jack_uuid(const std::string& uuid);
virtual std::string jack_uuid();