diff options
author | David Robillard <d@drobilla.net> | 2015-03-02 17:14:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-03-02 17:14:31 +0000 |
commit | e5da085b75ff7c33a10ac2b03434d487c47340f2 (patch) | |
tree | c59e52d7442dd735ec48dd0fc2d11e6838a15d6a /src/gui | |
parent | f69c75e637cc3c789a675d1811a2f632732bafc0 (diff) | |
download | ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.gz ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.bz2 ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.zip |
Fix compilation with -fvisibility=hidden.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5611 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/App.hpp | 3 | ||||
-rw-r--r-- | src/gui/GraphBox.hpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/App.hpp b/src/gui/App.hpp index 0ce37ebd..0e3a4079 100644 --- a/src/gui/App.hpp +++ b/src/gui/App.hpp @@ -29,6 +29,7 @@ #include "ingen/Atom.hpp" #include "ingen/Status.hpp" #include "ingen/World.hpp" +#include "ingen/ingen.h" #include "ingen/types.hpp" #include "raul/Deletable.hpp" #include "raul/URI.hpp" @@ -65,7 +66,7 @@ class WindowFactory; /** Ingen Gtk Application. * \ingroup GUI */ -class App +class INGEN_API App { public: ~App(); diff --git a/src/gui/GraphBox.hpp b/src/gui/GraphBox.hpp index aee4902c..8d884e01 100644 --- a/src/gui/GraphBox.hpp +++ b/src/gui/GraphBox.hpp @@ -28,6 +28,7 @@ #include <gtkmm/scrolledwindow.h> #include <gtkmm/statusbar.h> +#include "ingen/ingen.h" #include "ingen/types.hpp" #include "Window.hpp" @@ -60,7 +61,7 @@ class SubgraphModule; * * \ingroup GUI */ -class GraphBox : public Gtk::VBox +class INGEN_API GraphBox : public Gtk::VBox { public: GraphBox(BaseObjectType* cobject, |