Follow up to bug 534136, fix TestStaticAtoms test failure. r=sicking

This commit is contained in:
Mark Banner 2010-03-09 09:51:43 +00:00
Родитель 00a1a4c107
Коммит 3fff3e1706
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -44,9 +44,13 @@
#include "MoreTestingAtomList.h"
#undef MORE_TESTING_ATOM
#define MORE_TESTING_ATOM(name_, value_) NS_STATIC_ATOM_BUFFER(name_##_buffer, value_)
#include "MoreTestingAtomList.h"
#undef MORE_TESTING_ATOM
static const nsStaticAtom MoreTestingAtoms_info[] = {
#define MORE_TESTING_ATOM(name_, value_) NS_STATIC_ATOM(value_, &MoreTestingAtoms::name_),
#define MORE_TESTING_ATOM(name_, value_) NS_STATIC_ATOM(name_##_buffer, &MoreTestingAtoms::name_),
#include "MoreTestingAtomList.h"
#undef MORE_TESTING_ATOM
};