mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
layout insepctor build bustage when building on windows mobile. r=dbaron, a=beltzner
This commit is contained in:
parent
713a38da35
commit
e91b8853ab
@ -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);
|
||||
|
@ -157,7 +157,7 @@ inCSSValueSearch::SearchAsync(inISearchObserver *aObserver)
|
||||
NS_IMETHODIMP
|
||||
inCSSValueSearch::SearchStop()
|
||||
{
|
||||
KillSearch(inISearchObserver::INTERRUPTED);
|
||||
KillSearch(inISearchObserver::IN_INTERRUPTED);
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user