mirror of
https://github.com/taglib/taglib.git
synced 2025-07-26 08:54:30 -04:00
Rename RIFF::Info::FieldListMap to FieldMap.
It doesn't contain string lists.
This commit is contained in:
@ -24,8 +24,8 @@ public:
|
||||
tag.setFieldText("TEST", "Dummy Text");
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(String("Test title 1"), tag.title());
|
||||
|
||||
RIFF::Info::FieldListMap map = tag.fieldListMap();
|
||||
|
||||
RIFF::Info::FieldMap map = tag.fieldMap();
|
||||
CPPUNIT_ASSERT_EQUAL(String("Test title 1"), map["INAM"]);
|
||||
CPPUNIT_ASSERT_EQUAL(String("Dummy Text"), map["TEST"]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user