From bb9cc45cd22af67ac275a5e73accbe14fee664d8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 Oct 2009 16:10:01 +0000 Subject: Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only. Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/export_status.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'libs/ardour/ardour/export_status.h') diff --git a/libs/ardour/ardour/export_status.h b/libs/ardour/ardour/export_status.h index 42b0b061f0..3322ca639c 100644 --- a/libs/ardour/ardour/export_status.h +++ b/libs/ardour/ardour/export_status.h @@ -40,40 +40,40 @@ struct ExportStatus : public sigc::trackable { ExportStatus (); void init (); - + /* Status info */ - + volatile bool stop; volatile bool running; - + sigc::signal Aborting; void abort (bool error_occurred = false); bool aborted () const { return _aborted; } bool errors () const { return _errors; } - + sigc::signal Finished; void finish (); bool finished () const { return _finished; } - + /* Progress info */ - + volatile ExportStage stage; volatile float progress; - + volatile uint32_t total_timespans; volatile uint32_t timespan; - + volatile uint32_t total_channel_configs; volatile uint32_t channel_config; - + volatile uint32_t total_formats; volatile uint32_t format; - + private: volatile bool _aborted; volatile bool _errors; volatile bool _finished; - + }; } // namespace ARDOUR -- cgit v1.2.3