mirror of
https://github.com/taglib/taglib.git
synced 2025-07-14 02:54:27 -04:00
Return a bool indicating if the save was successful as in File::save()
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@332349 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -82,9 +82,9 @@ File *FileRef::file() const
|
||||
return d->file;
|
||||
}
|
||||
|
||||
void FileRef::save()
|
||||
bool FileRef::save()
|
||||
{
|
||||
d->file->save();
|
||||
return d->file->save();
|
||||
}
|
||||
|
||||
bool FileRef::isNull() const
|
||||
|
Reference in New Issue
Block a user