summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2015-06-02 11:17:31 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2015-06-02 11:17:31 +0100
commit970612552634c23ae7761fa7882ea619cb284cc6 (patch)
treeefd6d4430014ed59fad1739d596f19f83c6acb40
parent95c991ba35b55234b5ccfb63e82bd37c293fdeda (diff)
Amend WaveView::send_request() such that it'll compile with MSVC
Hopefully, this was the original intention (I've simply amended a function call to match similar usages elsewhere in the code).
-rw-r--r--libs/canvas/wave_view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/canvas/wave_view.cc b/libs/canvas/wave_view.cc
index b3bcb870ea..11c1da21ed 100644
--- a/libs/canvas/wave_view.cc
+++ b/libs/canvas/wave_view.cc
@@ -1305,7 +1305,7 @@ WaveView::send_request (boost::shared_ptr<WaveViewThreadRequest> req) const
start_drawing_thread ();
- Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (this, &WaveView::idle_send_request), req));
+ Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &WaveView::idle_send_request), req));
}
bool