summaryrefslogtreecommitdiff
path: root/gtk2_ardour/crossfade_view.cc
diff options
context:
space:
mode:
authorKarsten Wiese <fzuuzf@googlemail.com>2005-11-27 22:35:04 +0000
committerKarsten Wiese <fzuuzf@googlemail.com>2005-11-27 22:35:04 +0000
commit1184029638aea5fe6a53175d226371ec9214eb17 (patch)
treeb378e0c4b9b5283353c5f0f6ec63f186dfc91fa7 /gtk2_ardour/crossfade_view.cc
parent1f16781c75205b43ac193596d1449de343693a6f (diff)
convert set_property("foo", bar) to property_foo() = bar
git-svn-id: svn://localhost/trunk/ardour2@133 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/crossfade_view.cc')
-rw-r--r--gtk2_ardour/crossfade_view.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/crossfade_view.cc b/gtk2_ardour/crossfade_view.cc
index e27b055bab..4681a0f6c3 100644
--- a/gtk2_ardour/crossfade_view.cc
+++ b/gtk2_ardour/crossfade_view.cc
@@ -71,7 +71,7 @@ CrossfadeView::CrossfadeView (ArdourCanvas::Group *parent,
/* no frame around the xfade or overlap rects */
- frame->set_property ("outline_what", 0);
+ frame->property_outline_what() = 0;
/* never show the vestigial frame */
@@ -216,9 +216,9 @@ void
CrossfadeView::active_changed ()
{
if (crossfade.active()) {
- frame->set_property ("fill_color_rgba", color_map[cActiveCrossfade]);
+ frame->property_fill_color_rgba() = color_map[cActiveCrossfade];
} else {
- frame->set_property ("fill_color_rgba", color_map[cInactiveCrossfade]);
+ frame->property_fill_color_rgba() = color_map[cInactiveCrossfade];
}
redraw_curves ();