summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadGraphWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-11-21 22:11:28 +0000
committerDavid Robillard <d@drobilla.net>2012-11-21 22:11:28 +0000
commitad3752a9029796b95230b323af138c075c9be93f (patch)
treef1b1789f64365578c5b7fac1169eae56ef20f577 /src/gui/LoadGraphWindow.cpp
parent3b257a6a2f81c677cab83111051a79c5c3d5307f (diff)
downloadingen-ad3752a9029796b95230b323af138c075c9be93f.tar.gz
ingen-ad3752a9029796b95230b323af138c075c9be93f.tar.bz2
ingen-ad3752a9029796b95230b323af138c075c9be93f.zip
GUI::Configuration => GUI::Style.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4844 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/LoadGraphWindow.cpp')
-rw-r--r--src/gui/LoadGraphWindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/LoadGraphWindow.cpp b/src/gui/LoadGraphWindow.cpp
index b5297c86..a7daf90f 100644
--- a/src/gui/LoadGraphWindow.cpp
+++ b/src/gui/LoadGraphWindow.cpp
@@ -28,9 +28,9 @@
#include "ingen/runtime_paths.hpp"
#include "App.hpp"
-#include "Configuration.hpp"
-#include "LoadGraphWindow.hpp"
#include "GraphView.hpp"
+#include "LoadGraphWindow.hpp"
+#include "Style.hpp"
#include "ThreadedLoader.hpp"
using namespace std;
@@ -125,8 +125,8 @@ LoadGraphWindow::set_graph(SharedPtr<const GraphModel> graph)
void
LoadGraphWindow::on_show()
{
- if (_app->configuration()->graph_folder().length() > 0)
- set_current_folder(_app->configuration()->graph_folder());
+ if (_app->style()->graph_folder().length() > 0)
+ set_current_folder(_app->style()->graph_folder());
Gtk::FileChooserDialog::on_show();
}