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:
Scott Wheeler 2004-06-23 21:52:27 +00:00
parent 0d04000f74
commit 737be443d6
2 changed files with 3 additions and 3 deletions

View File

@ -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();
}
////////////////////////////////////////////////////////////////////////////////

View File

@ -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