mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
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:
parent
fe1a5cda85
commit
a49c223c73
@ -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
|
||||
|
@ -36,7 +36,6 @@ namespace TagLib {
|
||||
class Tag;
|
||||
class AudioProperties;
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
class TAGLIB_EXPORT FileName
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user