aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/it/itfile.cpp
diff options
context:
space:
mode:
authorMathias Panzenböck <grosser.meister.morti@gmx.net>2011-06-25 01:54:22 +0200
committerMathias Panzenböck <grosser.meister.morti@gmx.net>2011-06-25 01:54:22 +0200
commitf3447ae38dfdd17dd9ef6a200f5bbd92baf2a82e (patch)
treea20af95f6a4c37cd82114af57e2858fa5eddee2d /taglib/it/itfile.cpp
parent89861cf77ad3611b5ef16bdd6c94180fe6bc0af5 (diff)
style fixes for enum value names
Diffstat (limited to 'taglib/it/itfile.cpp')
-rw-r--r--taglib/it/itfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/taglib/it/itfile.cpp b/taglib/it/itfile.cpp
index 7d702edf..9dde7e6e 100644
--- a/taglib/it/itfile.cpp
+++ b/taglib/it/itfile.cpp
@@ -145,7 +145,7 @@ bool IT::File::save()
return false;
long fileSize = this->length();
- if(special & Properties::S_MESSAGE) {
+ if(special & Properties::MessageAttached) {
seek(54);
if(!readU16L(messageLength) || !readU32L(messageOffset))
return false;
@@ -215,7 +215,7 @@ void IT::File::read(bool)
// sample/instrument names are abused as comments so
// I just add all together.
String message;
- if(special & Properties::S_MESSAGE) {
+ if(special & Properties::MessageAttached) {
READ_U16L_AS(messageLength);
READ_U32L_AS(messageOffset);
seek(messageOffset);