1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "stringlistitem.hxx"
25 using namespace ::com::sun::star::uno
;
28 OStringListItem::OStringListItem(sal_Int16 _nWhich
, const Sequence
< OUString
>& _rList
)
34 OStringListItem::OStringListItem(const OStringListItem
& _rSource
)
35 :SfxPoolItem(_rSource
)
36 ,m_aList(_rSource
.m_aList
)
40 bool OStringListItem::operator==(const SfxPoolItem
& _rItem
) const
42 const OStringListItem
* pCompare
= dynamic_cast<const OStringListItem
*>( &_rItem
);
43 if ((!pCompare
) || (pCompare
->m_aList
.getLength() != m_aList
.getLength()))
46 // compare all strings individually
47 const OUString
* pMyStrings
= m_aList
.getConstArray();
48 const OUString
* pCompareStrings
= pCompare
->m_aList
.getConstArray();
50 for (sal_Int32 i
=0; i
<m_aList
.getLength(); ++i
, ++pMyStrings
, ++pCompareStrings
)
51 if (!pMyStrings
->equals(*pCompareStrings
))
57 SfxPoolItem
* OStringListItem::Clone(SfxItemPool
* /* _pPool */) const
59 return new OStringListItem(*this);
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */