Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / dbaccess / source / ui / misc / stringlistitem.cxx
blob5e8ea0a691cb2c5111569bd2f8296df16061fba8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
22 namespace dbaui
25 using namespace ::com::sun::star::uno;
27 // OStringListItem
28 OStringListItem::OStringListItem(sal_Int16 _nWhich, const Sequence< OUString >& _rList)
29 :SfxPoolItem(_nWhich)
30 ,m_aList(_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()))
44 return false;
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))
52 return false;
54 return true;
57 SfxPoolItem* OStringListItem::Clone(SfxItemPool* /* _pPool */) const
59 return new OStringListItem(*this);
62 } // namespace dbaui
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */