summaryrefslogtreecommitdiff
path: root/gtk2_ardour/strip_silence_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-09-19 20:31:32 +0200
committerRobin Gareus <robin@gareus.org>2015-09-19 20:31:32 +0200
commita6caf6ed3a179bb6e9c27582a879953d29ae85fe (patch)
tree6b7fc4d5ac47a9b169ef8c5614eabd37d05bb7d3 /gtk2_ardour/strip_silence_dialog.h
parentdad0e390ff247a4b0ac0da244fdf9b8a9550cec5 (diff)
NOOP, whitespace.
Diffstat (limited to 'gtk2_ardour/strip_silence_dialog.h')
-rw-r--r--gtk2_ardour/strip_silence_dialog.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gtk2_ardour/strip_silence_dialog.h b/gtk2_ardour/strip_silence_dialog.h
index 225b4461a2..44f5409754 100644
--- a/gtk2_ardour/strip_silence_dialog.h
+++ b/gtk2_ardour/strip_silence_dialog.h
@@ -25,7 +25,7 @@
#include "progress_reporter.h"
namespace ARDOUR {
- class Session;
+ class Session;
}
class AudioClock;
@@ -35,25 +35,25 @@ class RegionView;
class StripSilenceDialog : public ArdourDialog, public ProgressReporter
{
public:
- StripSilenceDialog (ARDOUR::Session*, std::list<RegionView*> const &);
+ StripSilenceDialog (ARDOUR::Session*, std::list<RegionView*> const &);
~StripSilenceDialog ();
double threshold () const {
return _threshold.get_value ();
}
- void drop_rects ();
+ void drop_rects ();
- void silences (ARDOUR::AudioIntervalMap&);
+ void silences (ARDOUR::AudioIntervalMap&);
ARDOUR::framecnt_t minimum_length () const;
- ARDOUR::framecnt_t fade_length () const;
+ ARDOUR::framecnt_t fade_length () const;
private:
void create_waves ();
void canvas_allocation (Gtk::Allocation &);
void update_silence_rects ();
- void resize_silence_rects ();
+ void resize_silence_rects ();
void update ();
void update_threshold_line ();
void update_stats (ARDOUR::AudioIntervalResult const &);
@@ -63,20 +63,20 @@ private:
Gtk::SpinButton _threshold;
AudioClock* _minimum_length;
- AudioClock* _fade_length;
+ AudioClock* _fade_length;
Gtk::ProgressBar _progress_bar;
Gtk::Button* cancel_button;
Gtk::Button* apply_button;
- struct ViewInterval {
- RegionView* view;
- ARDOUR::AudioIntervalResult intervals;
+ struct ViewInterval {
+ RegionView* view;
+ ARDOUR::AudioIntervalResult intervals;
- ViewInterval (RegionView* rv) : view (rv) {}
- };
+ ViewInterval (RegionView* rv) : view (rv) {}
+ };
- std::list<ViewInterval> views;
+ std::list<ViewInterval> views;
bool _destroying;