Avoid potential negative array index access to cached text.
[LibreOffice.git] / extensions / source / abpilot / abspage.cxx
blob4ea1f3dded480470c0ef6ec6a5e76953bd268726
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 "abspage.hxx"
21 #include "abspilot.hxx"
23 namespace abp
25 using namespace ::com::sun::star::uno;
26 using namespace ::com::sun::star::lang;
28 AddressBookSourcePage::AddressBookSourcePage(weld::Container* pPage, OAddressBookSourcePilot* pDialog, const OUString& rUIXMLDescription, const OUString& rID)
29 : AddressBookSourcePage_Base(pPage, pDialog, rUIXMLDescription, rID)
30 , m_pDialog(pDialog)
34 void AddressBookSourcePage::Activate()
36 AddressBookSourcePage_Base::Activate();
37 m_pDialog->updateTravelUI();
40 void AddressBookSourcePage::Deactivate()
42 AddressBookSourcePage_Base::Deactivate();
43 m_pDialog->enableButtons(WizardButtonFlags::NEXT, true);
46 OAddressBookSourcePilot* AddressBookSourcePage::getDialog()
48 return m_pDialog;
51 const OAddressBookSourcePilot* AddressBookSourcePage::getDialog() const
53 return m_pDialog;
56 AddressSettings& AddressBookSourcePage::getSettings()
58 return m_pDialog->getSettings();
61 const AddressSettings& AddressBookSourcePage::getSettings() const
63 return m_pDialog->getSettings();
66 const Reference< XComponentContext > & AddressBookSourcePage::getORB() const
68 return m_pDialog->getORB();
71 } // namespace abp
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */