mirror of
https://github.com/taglib/taglib.git
synced 2025-07-18 13:04:18 -04:00
documentation fixes
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@310850 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -28,11 +28,15 @@
|
||||
#include <string>
|
||||
|
||||
/*!
|
||||
* \relates TagLib::String
|
||||
*
|
||||
* Converts a TagLib::String to a QString without a requirement to link to Qt.
|
||||
*/
|
||||
#define QStringToTString(s) TagLib::String(s.utf8().data(), TagLib::String::UTF8)
|
||||
|
||||
/*!
|
||||
* \relates TagLib::String
|
||||
*
|
||||
* Converts a TagLib::String to a QString without a requirement to link to Qt.
|
||||
*/
|
||||
#define TStringToQString(s) QString::fromUtf8(s.toCString(true))
|
||||
@ -325,7 +329,7 @@ namespace TagLib {
|
||||
static String null;
|
||||
|
||||
protected:
|
||||
/*
|
||||
/*!
|
||||
* If this String is being shared via implicit sharing, do a deep copy of the
|
||||
* data and separate from the shared members. This should be called by all
|
||||
* non-const subclass members.
|
||||
|
Reference in New Issue
Block a user