SVN_SILENT nitpick

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@773922 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler 2008-02-12 05:02:36 +00:00
parent fe1a5cda85
commit a49c223c73
2 changed files with 2 additions and 5 deletions

View File

@ -169,11 +169,9 @@ File *FileRef::create(FileName fileName, bool readAudioProperties,
// Ok, this is really dumb for now, but it works for testing.
String s;
#ifdef _WIN32
if((const wchar_t *)fileName)
s = (const wchar_t *)fileName;
else
s = (const char *)fileName;
s = (wcslen((const wchar_t *) fileName) > 0) ? (const wchar_t) fileName : (const char *) fileName;
#else
s = fileName;
#endif

View File

@ -36,7 +36,6 @@ namespace TagLib {
class Tag;
class AudioProperties;
#ifdef _WIN32
class TAGLIB_EXPORT FileName
{