no bug - Bumping Thunderbird l10n changesets r=release a=l10n-bump DONTBUILD
cak -> 5afd7b4e3f1dbe2ccf16fed6a52a09842f4ec294
el -> e187aff59e6eeebe8327cd1fd8a28da438f9d437
et -> cbfbd5ef672171264b30b30fa8deb85a90a0d78c
fi -> d1101de366559133173ef6dd3e423de8da38c244
hr -> 80c7f5cf2aa83769d07611802f5674d4aaa39da4
hu -> 5de48f167b48583d44f7a09e16d771b2c0d7f6b2
kab -> 79eec3c0f52b300536f4e77d61b5ac97138d650b
kk -> 6d6de91fb85364010a61bb609eb5bba4241596c8
lt -> a9c48e509c6ff2c5875e9d9d9436e34b0fcdf24d
pl -> c245d5fbda679d67637156c20a319786df893f12
zh-CN -> 6922e62afaff560ef9ab50b9484b7fd6e5e66b81
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#include "nscore.h"
#include "nsImportMailboxDescriptor.h"
#include "nsComponentManagerUtils.h"
////////////////////////////////////////////////////////////////////////
nsresult nsImportMailboxDescriptor::Create(nsISupports* aOuter, REFNSIID aIID,
void** aResult) {
if (aOuter) return NS_ERROR_NO_AGGREGATION;
RefPtr<nsImportMailboxDescriptor> it = new nsImportMailboxDescriptor();
return it->QueryInterface(aIID, aResult);
}
NS_IMPL_ISUPPORTS(nsImportMailboxDescriptor, nsIImportMailboxDescriptor)
nsImportMailboxDescriptor::nsImportMailboxDescriptor() {
m_import = true;
m_size = 0;
m_depth = 0;
m_id = 0;
m_pFile = do_CreateInstance(NS_LOCAL_FILE_CONTRACTID);
}