Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / doc / docstoragemodifylistener.cxx
blob16a3b1c4504dcdce70b3fe6493d13ef6bb17e3cb
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 "sfx2/docstoragemodifylistener.hxx"
21 #include <comphelper/solarmutex.hxx>
23 //........................................................................
24 namespace sfx2
26 //........................................................................
28 using ::com::sun::star::uno::Reference;
29 using ::com::sun::star::uno::XInterface;
30 using ::com::sun::star::uno::UNO_QUERY;
31 using ::com::sun::star::uno::UNO_QUERY_THROW;
32 using ::com::sun::star::uno::UNO_SET_THROW;
33 using ::com::sun::star::uno::Exception;
34 using ::com::sun::star::uno::RuntimeException;
35 using ::com::sun::star::uno::Any;
36 using ::com::sun::star::uno::makeAny;
37 using ::com::sun::star::lang::EventObject;
39 //====================================================================
40 //=
41 //====================================================================
42 //--------------------------------------------------------------------
43 DocumentStorageModifyListener::DocumentStorageModifyListener( IModifiableDocument& _rDocument, comphelper::SolarMutex& _rMutex )
44 :m_pDocument( &_rDocument )
45 ,m_rMutex( _rMutex )
49 //--------------------------------------------------------------------
50 DocumentStorageModifyListener::~DocumentStorageModifyListener()
54 //--------------------------------------------------------------------
55 void DocumentStorageModifyListener::dispose()
57 ::osl::Guard< comphelper::SolarMutex > aGuard( m_rMutex );
58 m_pDocument = NULL;
61 //--------------------------------------------------------------------
62 void SAL_CALL DocumentStorageModifyListener::modified( const EventObject& /*aEvent*/ ) throw (RuntimeException)
64 ::osl::Guard< comphelper::SolarMutex > aGuard( m_rMutex );
65 // storageIsModified must not contain any locking!
66 if ( m_pDocument )
67 m_pDocument->storageIsModified();
70 //--------------------------------------------------------------------
71 void SAL_CALL DocumentStorageModifyListener::disposing( const EventObject& /*Source*/ ) throw (RuntimeException)
73 // not interested in. In particular, we do *not* dispose ourself when a storage we're
74 // listening at is disposed. The reason here is that this listener instance is *reused*
75 // in case the document is re-based to another storage.
78 //........................................................................
79 } // namespace sfx2
80 //........................................................................
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */