cid#1640468 Dereference after null check
[LibreOffice.git] / offapi / com / sun / star / form / XConfirmDeleteBroadcaster.idl
blob5a08415144382d8b52b265ddc9aeaeb8b1eb0b6b
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 .
22 module com { module sun { module star { module form {
25 /** provides the possibility of receiving an event for confirming deletions of
26 rows in a com::sun::star::form::component::DataForm.
28 @see XConfirmDeleteListener
30 published interface XConfirmDeleteBroadcaster: com::sun::star::uno::XInterface
33 /** remembers the specified listener to receive an event for confirming deletions
35 <p>XConfirmDeleteListener::confirmDelete() is called before a
36 deletion is performed. You may use the event to write your own confirmation messages.</p>
38 @param aListener
39 the listener to add.
41 @see com::sun::star::form::XConfirmDeleteListener
43 void addConfirmDeleteListener( [in] com::sun::star::form::XConfirmDeleteListener aListener );
46 /** removes the specified listener.
48 @param aListener
49 the listener to remove.
51 @see com::sun::star::form::XConfirmDeleteListener
53 void removeConfirmDeleteListener( [in] com::sun::star::form::XConfirmDeleteListener aListener );
58 }; }; }; };
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */