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:
Scott Wheeler
2004-05-13 00:08:00 +00:00
parent 1770ffd35a
commit b29a821ed4
2 changed files with 11 additions and 7 deletions

View File

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