[matroska] r806 - trunk/DvdMenuXtractor
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: robux4
Date: 2004-09-15 00:19:23 +0400 (Wed, 15 Sep 2004)
New Revision: 806
Modified:
trunk/DvdMenuXtractor/DvdMenuXtractor.cpp
Log:
fix a path problem under windows
Modified: trunk/DvdMenuXtractor/DvdMenuXtractor.cpp
===================================================================
--- trunk/DvdMenuXtractor/DvdMenuXtractor.cpp 2004-09-14 20:18:49 UTC (rev 805)
+++ trunk/DvdMenuXtractor/DvdMenuXtractor.cpp 2004-09-14 20:19:23 UTC (rev 806)
@@ -241,7 +241,7 @@
try
{
wxFileName _FileName(m_edInDir->GetValue());
- IfoFile = new IFOFile(_FileName.GetPath());
+ IfoFile = new IFOFile(_FileName.GetPath(wxPATH_GET_VOLUME));
}
catch(IFOException&)
{