1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  */
10 
11 #include <PopupRequest.hxx>
12 
13 using namespace css;
14 
15 namespace chart
16 {
PopupRequest()17 PopupRequest::PopupRequest()
18     : impl::PopupRequest_Base(m_aMutex)
19 {
20 }
21 
~PopupRequest()22 PopupRequest::~PopupRequest() {}
23 
24 // ____ XRequestCallback ____
25 
addCallback(const uno::Reference<awt::XCallback> & xCallback,const uno::Any &)26 void SAL_CALL PopupRequest::addCallback(const uno::Reference<awt::XCallback>& xCallback,
27                                         const uno::Any& /*aData*/)
28 {
29     m_xCallback = xCallback;
30 }
31 
32 // ____ WeakComponentImplHelperBase ____
33 // is called when dispose() is called at this component
disposing()34 void SAL_CALL PopupRequest::disposing() {}
35 
36 } //  namespace chart
37 
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
39