This commit is contained in:
dougt%meer.net 2005-05-16 21:33:33 +00:00
Родитель a759456667
Коммит cf258f7a54
2 изменённых файлов: 7 добавлений и 2 удалений

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

@ -91,7 +91,10 @@
#include "nsHashPropertyBag.h"
#include "nsStringAPI.h"
#include "nsStringBuffer.h"
#ifndef WINCE
#include "nsWindowsRegKey.h"
#endif
void XXXNeverCalled()
{
@ -241,5 +244,7 @@ void XXXNeverCalled()
b.ToString(0, y);
}
#ifndef WINCE
NS_NewWindowsRegKey(nsnull);
#endif
}

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

@ -114,7 +114,7 @@
#include "SpecialSystemDirectory.h"
#ifdef XP_WIN
#if defined(XP_WIN) && !defined(WINCE)
#include "nsWindowsRegKey.h"
#endif
@ -390,7 +390,7 @@ static const nsModuleComponentInfo components[] = {
#define NS_HASH_PROPERTY_BAG_CLASSNAME "Hashtable Property Bag"
COMPONENT(HASH_PROPERTY_BAG, nsHashPropertyBagConstructor),
#ifdef XP_WIN
#if defined(XP_WIN) && !defined(WINCE)
COMPONENT(WINDOWSREGKEY, nsWindowsRegKeyConstructor),
#endif
};