Fixing WinCE Bustage. r=darin

This commit is contained in:
dougt%meer.net 2005-05-16 21:33:33 +00:00
parent 384d09b420
commit 41ea39d729
2 changed files with 7 additions and 2 deletions

View File

@ -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
}

View File

@ -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
};