Files
loongoffice/chart2/source/tools/PopupRequest.cxx
Philipp Hofer 79b6055acd tdf#123936 Formatting files in module chart2 with clang-format
Change-Id: Ie4dea73190040e5716fe531cf35fae20d7e175db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105650
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
2020-11-22 01:57:32 +01:00

39 lines
959 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <PopupRequest.hxx>
using namespace css;
namespace chart
{
PopupRequest::PopupRequest()
: impl::PopupRequest_Base(m_aMutex)
{
}
PopupRequest::~PopupRequest() {}
// ____ XRequestCallback ____
void SAL_CALL PopupRequest::addCallback(const uno::Reference<awt::XCallback>& xCallback,
const uno::Any& /*aData*/)
{
m_xCallback = xCallback;
}
// ____ WeakComponentImplHelperBase ____
// is called when dispose() is called at this component
void SAL_CALL PopupRequest::disposing() {}
} // namespace chart
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */