summaryrefslogtreecommitdiff
path: root/gtk2_ardour/waveview.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-11-15 03:12:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-11-15 03:12:16 +0000
commitbeb3ee233969b7a1a7863102d0d38484f327dae3 (patch)
tree53d971313be7736e83c37a8f1fcf2a717f0ad1aa /gtk2_ardour/waveview.cc
parentb373ef6a243b0cf8fbb0ef7190f0631ee0cd8899 (diff)
fix sigc++ SConscript, get crossfade_edit.cc to compile
git-svn-id: svn://localhost/trunk/ardour2@97 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/waveview.cc')
-rw-r--r--gtk2_ardour/waveview.cc14
1 files changed, 10 insertions, 4 deletions
diff --git a/gtk2_ardour/waveview.cc b/gtk2_ardour/waveview.cc
index b84edd03e0..9c2fa409f6 100644
--- a/gtk2_ardour/waveview.cc
+++ b/gtk2_ardour/waveview.cc
@@ -126,6 +126,12 @@ GType WaveView::get_base_type()
return gnome_canvas_waveview_get_type();
}
+void*
+WaveView::create_cache ()
+{
+ return gnome_canvas_waveview_cache_new ();
+}
+
Glib::PropertyProxy<void*> WaveView::property_data_src()
{
return Glib::PropertyProxy<void*> (this, "data-src");
@@ -134,11 +140,11 @@ Glib::PropertyProxy_ReadOnly<void*> WaveView::property_data_src() const
{
return Glib::PropertyProxy_ReadOnly<void*> (this, "data-src");
}
-Glib::PropertyProxy<void*> WaveView::property_channel()
+Glib::PropertyProxy<uint32_t*> WaveView::property_channel()
{
return Glib::PropertyProxy<void*> (this, "channel");
}
-Glib::PropertyProxy_ReadOnly<void*> WaveView::property_channel() const
+Glib::PropertyProxy_ReadOnly<uint32_t*> WaveView::property_channel() const
{
return Glib::PropertyProxy_ReadOnly<void*> (this, "channel");
}
@@ -190,11 +196,11 @@ Glib::PropertyProxy_ReadOnly<void*> WaveView::property_cache() const
{
return Glib::PropertyProxy_ReadOnly<void*> (this, "cache");
}
-Glib::PropertyProxy<void*> WaveView::property_cache_updater()
+Glib::PropertyProxy<bool> WaveView::property_cache_updater()
{
return Glib::PropertyProxy<void*> (this, "cache-updater");
}
-Glib::PropertyProxy_ReadOnly<void*> WaveView::property_cache_updater() const
+Glib::PropertyProxy_ReadOnly<bool> WaveView::property_cache_updater() const
{
return Glib::PropertyProxy_ReadOnly<void*> (this, "cache-updater");
}