Bump version to 5.0-14
[LibreOffice.git] / dbaccess / source / ui / misc / stringlistitem.cxx
blobd375d8669f07ce880c11ae91da41913cd76de3b7
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 TYPEINIT1(OStringListItem, SfxPoolItem);
29 OStringListItem::OStringListItem(sal_Int16 _nWhich, const Sequence< OUString >& _rList)
30 :SfxPoolItem(_nWhich)
31 ,m_aList(_rList)
35 OStringListItem::OStringListItem(const OStringListItem& _rSource)
36 :SfxPoolItem(_rSource)
37 ,m_aList(_rSource.m_aList)
41 bool OStringListItem::operator==(const SfxPoolItem& _rItem) const
43 const OStringListItem* pCompare = PTR_CAST(OStringListItem, &_rItem);
44 if ((!pCompare) || (pCompare->m_aList.getLength() != m_aList.getLength()))
45 return false;
47 // compare all strings individually
48 const OUString* pMyStrings = m_aList.getConstArray();
49 const OUString* pCompareStrings = pCompare->m_aList.getConstArray();
51 for (sal_Int32 i=0; i<m_aList.getLength(); ++i, ++pMyStrings, ++pCompareStrings)
52 if (!pMyStrings->equals(*pCompareStrings))
53 return false;
55 return true;
58 SfxPoolItem* OStringListItem::Clone(SfxItemPool* /* _pPool */) const
60 return new OStringListItem(*this);
63 } // namespace dbaui
65 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */