mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Update the C bindings to reflect the earlier change in the return type
for saving files. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@323195 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
0d04000f74
commit
737be443d6
@ -87,9 +87,9 @@ const TagLib_AudioProperties *taglib_file_audioproperties(const TagLib_File *fil
|
||||
return reinterpret_cast<const TagLib_AudioProperties *>(f->audioProperties());
|
||||
}
|
||||
|
||||
void taglib_file_save(TagLib_File *file)
|
||||
BOOL taglib_file_save(TagLib_File *file)
|
||||
{
|
||||
reinterpret_cast<File *>(file)->save();
|
||||
return reinterpret_cast<File *>(file)->save();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -109,7 +109,7 @@ const TagLib_AudioProperties *taglib_file_audioproperties(const TagLib_File *fil
|
||||
/*!
|
||||
* Saves the \a file to disk.
|
||||
*/
|
||||
void taglib_file_save(TagLib_File *file);
|
||||
BOOL taglib_file_save(TagLib_File *file);
|
||||
|
||||
/******************************************************************************
|
||||
* Tag API
|
||||
|
Loading…
x
Reference in New Issue
Block a user