mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Issue #1258 - Part 2: Use binoc-central version of ldap
This commit is contained in:
parent
e400f4130a
commit
deb86ab699
94 changed files with 44 additions and 18 deletions
|
|
@ -48,6 +48,6 @@ else:
|
|||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'/ldap/c-sdk/include',
|
||||
'../../c-sdk/include',
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -723,3 +723,28 @@ nsLDAPURL::GetHasRef(bool *result)
|
|||
{
|
||||
return mBaseURL->GetHasRef(result);
|
||||
}
|
||||
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLDAPURL::GetFilePath(nsACString &aFilePath)
|
||||
{
|
||||
return mBaseURL->GetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLDAPURL::SetFilePath(const nsACString &aFilePath)
|
||||
{
|
||||
return mBaseURL->SetFilePath(aFilePath);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLDAPURL::GetQuery(nsACString &aQuery)
|
||||
{
|
||||
return mBaseURL->GetQuery(aQuery);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsLDAPURL::SetQuery(const nsACString &aQuery)
|
||||
{
|
||||
return mBaseURL->SetQuery(aQuery);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue