layout insepctor build bustage when building on windows mobile. r=dbaron, a=beltzner

This commit is contained in:
dougt@meer.net 2008-02-20 14:39:46 -08:00
parent d410b606ce
commit 6b3a7475bd
2 changed files with 4 additions and 4 deletions

View File

@ -43,9 +43,9 @@ interface inISearchProcess;
interface inISearchObserver : nsISupports
{
// result codes which are sent to onSearchEnd
const short SUCCESS = 1; // search completed successfully
const short INTERRUPTED = 2; // search stopped due to user interruption
const short ERROR = 3; // search stopped due to an error
const short IN_SUCCESS = 1; // search completed successfully
const short IN_INTERRUPTED = 2; // search stopped due to user interruption
const short IN_ERROR = 3; // search stopped due to an error
void onSearchStart(in inISearchProcess aModule);
void onSearchResult(in inISearchProcess aModule);

View File

@ -157,7 +157,7 @@ inCSSValueSearch::SearchAsync(inISearchObserver *aObserver)
NS_IMETHODIMP
inCSSValueSearch::SearchStop()
{
KillSearch(inISearchObserver::INTERRUPTED);
KillSearch(inISearchObserver::IN_INTERRUPTED);
return NS_OK;
}