summaryrefslogtreecommitdiffstats
path: root/src/UIFile.hpp
diff options
context:
space:
mode:
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);
}