diff options
Diffstat (limited to 'multimedia/dvdstyler/dvdstyler-2.3rc2-nognome.patch')
-rw-r--r-- | multimedia/dvdstyler/dvdstyler-2.3rc2-nognome.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/dvdstyler/dvdstyler-2.3rc2-nognome.patch b/multimedia/dvdstyler/dvdstyler-2.3rc2-nognome.patch new file mode 100644 index 0000000000000..060cf5b2cdff2 --- /dev/null +++ b/multimedia/dvdstyler/dvdstyler-2.3rc2-nognome.patch @@ -0,0 +1,11 @@ +--- wxVillaLib/ThumbnailFactory.cpp.org 2012-08-20 07:10:49.071537020 +0200 ++++ wxVillaLib/ThumbnailFactory.cpp 2012-08-20 07:11:27.153489557 +0200 +@@ -251,7 +251,7 @@ + free(fnameEscaped); + wxString fname = filename; + if (info->mimeType == _T("concat")) +- fname = filename.substr(7).BeforeFirst(wxT('|')); ++ fname = filename.Mid(7).BeforeFirst(wxT('|')); + info->mtime = wxFileName(fname).GetModificationTime(); + #endif + return info; |