2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-04-12 19:43:32 +04:00
|
|
|
|
|
|
|
#include "nsArrayUtils.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// do_QueryElementAt helper stuff
|
|
|
|
//
|
|
|
|
nsresult
|
|
|
|
nsQueryArrayElementAt::operator()(const nsIID& aIID, void** aResult) const
|
2014-06-27 05:35:39 +04:00
|
|
|
{
|
|
|
|
nsresult status = mArray ? mArray->QueryElementAt(mIndex, aIID, aResult) :
|
|
|
|
NS_ERROR_NULL_POINTER;
|
2006-04-12 19:43:32 +04:00
|
|
|
|
2014-06-27 05:35:39 +04:00
|
|
|
if (mErrorPtr) {
|
|
|
|
*mErrorPtr = status;
|
2006-04-12 19:43:32 +04:00
|
|
|
}
|
2014-06-27 05:35:39 +04:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|