summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_filename.h
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2010-03-30 15:25:28 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2010-03-30 15:25:28 +0000
commita743d20dce499f3b6f1418967e200beaa670b375 (patch)
tree4a9c98ea8d4d18a17c701942ffd3b5db1bf34164 /libs/ardour/ardour/export_filename.h
parent14b0ca31bcb62e5b7e9e77634ef9cd2e8cf65800 (diff)
Fix split channel export (which was broken during export refactoring)
Possibly fixes bug #3052 Also clarify some comments which weren't quite clear :) git-svn-id: svn://localhost/ardour2/branches/3.0@6808 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/export_filename.h')
-rw-r--r--libs/ardour/ardour/export_filename.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/export_filename.h b/libs/ardour/ardour/export_filename.h
index 2847291a13..c5f0e3b5ca 100644
--- a/libs/ardour/ardour/export_filename.h
+++ b/libs/ardour/ardour/export_filename.h
@@ -116,7 +116,8 @@ class ExportFilename {
TimeFormat time_format;
Glib::ustring get_formatted_time (Glib::ustring const & format) const;
- struct tm * time_struct; // Due to static allocation no destructor or copy-ctor is needed because of this
+ // Due to the static allocation used in strftime(), no destructor or copy-ctor is needed for this
+ struct tm * time_struct;
TimespanPtr timespan;
ChannelConfigPtr channel_config;