summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2008-07-15 08:46:00 +0000
committerDoug McLain <doug@nostar.net>2008-07-15 08:46:00 +0000
commit1563a30b031d2c459c60dd540df83d6bc38f55f5 (patch)
tree9f29e625889c164c38787bb6479f85e48db61c60 /gtk2_ardour/utils.cc
parent9ea93a27aca2cfa80a8d70fed4502ba55a1faa04 (diff)
done debugging, remove the debug output, and cleanup the catchphrase in create_from_file
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3612 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 1197e99b41..292ea4127d 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -558,13 +558,13 @@ key_press_focus_accelerator_handler (Gtk::Window& window, GdkEventKey* ev)
Glib::RefPtr<Gdk::Pixbuf>
get_xpm (std::string name)
{
- cerr << "xpm path = " << ARDOUR::find_data_file(name, "pixmaps") << endl;//DEBUG
+ //cerr << "xpm path = " << ARDOUR::find_data_file(name, "pixmaps") << endl;//DEBUG
if (!xpm_map[name]) {
try {
xpm_map[name] = Gdk::Pixbuf::create_from_file (ARDOUR::find_data_file(name, "pixmaps"));
}
catch(const Glib::Error& e) {
- cerr << e.what() << endl;
+ warning << "Caught Glib::Error: " << e.what() << endmsg;
}
}