forked from mia/Aegisub
Stop importing msxml.dll when it's not needed anyway, and a string literal was not marked with _T() when it should.
Originally committed to SVN as r1985.
This commit is contained in:
parent
79b82b9167
commit
c6a1b9649b
2 changed files with 1 additions and 2 deletions
|
@ -102,7 +102,7 @@ void GetSubFileNames(CString fn, CAtlArray<CString>& paths, CAtlArray<SubFile>&
|
||||||
|
|
||||||
bool fEmpty = true;
|
bool fEmpty = true;
|
||||||
|
|
||||||
if((hFile = FindFirstFile(path + title + "*", &wfd)) != INVALID_HANDLE_VALUE)
|
if((hFile = FindFirstFile(path + title + _T("*"), &wfd)) != INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
|
@ -39,5 +39,4 @@
|
||||||
// TODO: reference additional headers your program requires here
|
// TODO: reference additional headers your program requires here
|
||||||
|
|
||||||
#include <streams.h>
|
#include <streams.h>
|
||||||
#import "msxml.dll"
|
|
||||||
#include "..\DSUtil\DSUtil.h"
|
#include "..\DSUtil\DSUtil.h"
|
||||||
|
|
Loading…
Reference in a new issue