summaryrefslogtreecommitdiffstats
path: root/src/UIFile.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-25 23:48:14 +0000
committerDavid Robillard <d@drobilla.net>2011-11-25 23:48:14 +0000
commitd660a764ac2237f5e2fe5190e90b31209b1d70da (patch)
tree85c5e1d96d422a990d81ff35a19b64276a1ef8b4 /src/UIFile.hpp
parente0d452db27924fbef0d6d02000bb893c67879763 (diff)
downloadpatchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.tar.gz
patchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.tar.bz2
patchage-d660a764ac2237f5e2fe5190e90b31209b1d70da.zip
Remove Raul dependency.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3633 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/UIFile.hpp')
-rw-r--r--src/UIFile.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/UIFile.hpp b/src/UIFile.hpp
index 42f1f21..2abc3e5 100644
--- a/src/UIFile.hpp
+++ b/src/UIFile.hpp
@@ -19,13 +19,10 @@
#include <fstream>
#include <sstream>
-#include <stdexcept>
#include <string>
#include <gtkmm/builder.h>
-#include "raul/log.hpp"
-
#include "patchage-config.h"
#ifdef PATCHAGE_BINLOC
#include "binary_location.h"
@@ -51,14 +48,14 @@ public:
ui_filename = bundle + "/" + base_name + ".ui";
free(loc);
if (is_readable(ui_filename)) {
- Raul::info << "Loading UI file " << ui_filename << std::endl;
+ std::cout << "Loading UI file " << ui_filename << std::endl;
return Gtk::Builder::create_from_file(ui_filename);
}
}
#endif
ui_filename = std::string(PATCHAGE_DATA_DIR) + "/" + base_name + ".ui";
if (is_readable(ui_filename)) {
- Raul::info << "Loading UI file " << ui_filename << std::endl;
+ std::cout << "Loading UI file " << ui_filename << std::endl;
return Gtk::Builder::create_from_file(ui_filename);
}