summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-14 23:48:18 +0000
committerDavid Robillard <d@drobilla.net>2009-02-14 23:48:18 +0000
commitaefa9f0938d287c497878a6e29ce2f9e0bade7c5 (patch)
tree4d683afc8b73850000402ee33764e499852e9e22 /libs
parentde2681f7cddc95e5a859c40e24d302631336a35a (diff)
Tidy.
git-svn-id: svn://localhost/ardour2/branches/3.0@4569 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/smf_source.cc9
1 files changed, 2 insertions, 7 deletions
diff --git a/libs/ardour/smf_source.cc b/libs/ardour/smf_source.cc
index cdf252c8cf..6ee1190212 100644
--- a/libs/ardour/smf_source.cc
+++ b/libs/ardour/smf_source.cc
@@ -48,11 +48,6 @@ using namespace ARDOUR;
string SMFSource::_search_path;
-/*sigc::signal<void,struct tm*, time_t> SMFSource::HeaderPositionOffsetChanged;
-bool SMFSource::header_position_negative;
-uint64_t SMFSource::header_position_offset;
-*/
-
SMFSource::SMFSource (Session& s, std::string path, Flag flags)
: MidiSource (s, region_name_from_path(path, false))
, Evoral::SMF<double> ()
@@ -106,8 +101,8 @@ SMFSource::~SMFSource ()
bool
SMFSource::removable () const
{
- return (_flags & Removable) && ((_flags & RemoveAtDestroy) ||
- ((_flags & RemovableIfEmpty) && is_empty()));
+ return (_flags & Removable) && ((_flags & RemoveAtDestroy) ||
+ ((_flags & RemovableIfEmpty) && is_empty()));
}
int