13
0

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).
This commit is contained in:
John Emmas 2015-06-02 11:17:31 +01:00
parent 95c991ba35
commit 9706125526

View File

@ -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