mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
Restore typeAheadResult support in autocomplete
This commit is contained in:
parent
c887c0a5ee
commit
6106e49360
11 changed files with 273 additions and 52 deletions
|
|
@ -133,6 +133,13 @@ NS_IMETHODIMP nsFileResult::GetMatchCount(uint32_t *aMatchCount)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP nsFileResult::GetTypeAheadResult(bool *aTypeAheadResult)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(aTypeAheadResult);
|
||||
*aTypeAheadResult = false;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP nsFileResult::GetValueAt(int32_t index, nsAString & aValue)
|
||||
{
|
||||
aValue = mValues[index];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue