Make font_file_lister.cpp build on windows when freetype2 is disabled (broken by r3536).

Originally committed to SVN as r3609.
This commit is contained in:
Thomas Goyne 2009-10-02 23:15:31 +00:00
parent 6f38989076
commit d54ddc688b
1 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,8 @@
#include "font_file_lister_freetype.h" #include "font_file_lister_freetype.h"
/// DOCME /// DOCME
#define FontListerClass FreetypeFontFileLister #define FontListerClass FreetypeFontFileLister
#else
#include "font_file_lister.h"
#endif // WITH_FREETYPE2 #endif // WITH_FREETYPE2
#else #else
#include "font_file_lister_fontconfig.h" #include "font_file_lister_fontconfig.h"
@ -60,7 +62,6 @@
#include "text_file_reader.h" #include "text_file_reader.h"
#include "text_file_writer.h" #include "text_file_writer.h"
/// DOCME /// DOCME
FontFileLister *FontFileLister::instance = NULL; FontFileLister *FontFileLister::instance = NULL;