remove cruft

This commit is contained in:
Robin Gareus 2015-09-19 18:30:01 +02:00
parent 0e55dc470d
commit 6569301001
2 changed files with 0 additions and 7 deletions

View File

@ -45,7 +45,6 @@ StripSilenceDialog::StripSilenceDialog (Session* s, list<RegionView*> const & v)
, ProgressReporter ()
, _minimum_length (new AudioClock (X_("silence duration"), true, "", true, false, true, false))
, _fade_length (new AudioClock (X_("silence duration"), true, "", true, false, true, false))
, _peaks_ready_connection (0)
, _destroying (false)
{
set_session (s);
@ -118,7 +117,6 @@ StripSilenceDialog::~StripSilenceDialog ()
_destroying = true;
/* Terminate our thread */
_lock.lock ();
_interthread_info.cancel = true;
_thread_should_finish = true;
@ -129,8 +127,6 @@ StripSilenceDialog::~StripSilenceDialog ()
delete _minimum_length;
delete _fade_length;
delete _peaks_ready_connection;
}
void

View File

@ -51,7 +51,6 @@ public:
private:
void create_waves ();
void peaks_ready ();
void canvas_allocation (Gtk::Allocation &);
void update_silence_rects ();
void resize_silence_rects ();
@ -76,8 +75,6 @@ private:
std::list<ViewInterval> views;
PBD::ScopedConnection* _peaks_ready_connection;
bool _destroying;
pthread_t _thread; ///< thread to compute silence in the background