INTEGRATION: CWS impress52 (1.6.16); FILE MERGED

2005/04/28 10:45:01 cl 1.6.16.1: #i48314# guard outliner callbacks from page change events
This commit is contained in:
Oliver Bolte 2005-05-02 12:18:19 +00:00
parent d08c7a92e7
commit 9aabd10fa2

View file

@ -2,9 +2,9 @@
*
* $RCSfile: OutlineView.hxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: obo $ $Date: 2005-04-18 11:37:03 $
* last change: $Author: obo $ $Date: 2005-05-02 13:18:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -236,6 +236,16 @@ private:
DECL_LINK(EventMultiplexerListener, sd::tools::EventMultiplexerEvent*);
};
// calls IgnoreCurrentPageChangesLevel with true in ctor and with false in dtor
class OutlineViewPageChangesGuard
{
public:
OutlineViewPageChangesGuard( OutlineView* pView );
~OutlineViewPageChangesGuard();
private:
OutlineView* mpView;
};
} // end of namespace sd
#endif