Fixed an illegal preprocessor directive.

This commit is contained in:
mcmullen%netscape.com 1999-04-01 20:06:46 +00:00
Родитель 53b023d4d1
Коммит ae221e38a6
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -143,7 +143,7 @@
#include <Files.h>
#elif defined(XP_UNIX) || defined (XP_OS2)
#include <dirent.h>
#elif XP_PC
#elif defined(XP_PC)
#include "prio.h"
#endif
@ -676,7 +676,7 @@ class NS_BASE nsDirectoryIterator
#if defined(XP_UNIX)
DIR* mDir;
#elif defined(XP_PC)
PRDir* mDir; // XXX why not use PRDir for Unix & Mac, too?
PRDir* mDir; // XXX why not use PRDir for Unix too?
#elif defined(XP_MAC)
OSErr SetToIndex();
short mIndex;

Просмотреть файл

@ -143,7 +143,7 @@
#include <Files.h>
#elif defined(XP_UNIX) || defined (XP_OS2)
#include <dirent.h>
#elif XP_PC
#elif defined(XP_PC)
#include "prio.h"
#endif
@ -676,7 +676,7 @@ class NS_BASE nsDirectoryIterator
#if defined(XP_UNIX)
DIR* mDir;
#elif defined(XP_PC)
PRDir* mDir; // XXX why not use PRDir for Unix & Mac, too?
PRDir* mDir; // XXX why not use PRDir for Unix too?
#elif defined(XP_MAC)
OSErr SetToIndex();
short mIndex;