summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-09-30 14:18:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-09-30 14:18:15 +0000
commitcaa305ed2b5f2b5ed976a1e0b18b3794c2ab2465 (patch)
treeb609da362fdeb0a5be7758e9f6dee1869170477c /gtk2_ardour/utils.cc
parent9a30bb2aecabcdd16568e6548dd1aeade8effa48 (diff)
more tweaks to the IO Selector
git-svn-id: svn://localhost/ardour2/branches/3.0@3840 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index f09ef1b27f..020bc6f4d6 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -1,7 +1,7 @@
/*
Copyright (C) 2003 Paul Davis
- This program is free software; you can redistribute it and/or modify
+ This program is free software; you an redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
@@ -348,14 +348,11 @@ color_from_style (string widget_style_name, int state, string attr)
return Gdk::Color ("red");
}
- cerr << "got style for " << widget_style_name << endl;
-
if (attr == "fg") {
return Gdk::Color (&style->fg[state]);
}
if (attr == "bg") {
- cerr << "returning color from bg\n";
return Gdk::Color (&style->bg[state]);
}
@@ -387,7 +384,6 @@ color_from_style (string widget_style_name, int state, string attr)
return Gdk::Color ("red");
}
-
bool
canvas_item_visible (ArdourCanvas::Item* item)
{