aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Panzenböck <grosser.meister.morti@gmx.net>2011-06-14 03:56:32 +0200
committerMathias Panzenböck <grosser.meister.morti@gmx.net>2011-06-14 03:56:32 +0200
commit1e6d645ce9735a2aac78e8d57b9f25bf547ea6d1 (patch)
tree15218c8931e776d21e7541720f0ed020e81868b4
parent65fb9733b9f0183a6c9d7be0093b2648351349f5 (diff)
fixed a comment
-rw-r--r--taglib/mod/modfile.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/taglib/mod/modfile.cpp b/taglib/mod/modfile.cpp
index 4525f119..669db096 100644
--- a/taglib/mod/modfile.cpp
+++ b/taglib/mod/modfile.cpp
@@ -71,11 +71,9 @@ Mod::Properties *Mod::File::audioProperties() const
bool Mod::File::save()
{
- // note: if title starts with "Extended Module: "
- // the file would look like an .xm file
seek(0);
writeString(d->tag.title(), 20, ' ');
- // TODO: write comment as sample names
+ // TODO: write comment as instrument names
return true;
}