Tag: cws_src680_rpt23fix02 User: oj Date: 2007-07-25 14:06:35+0000 Modified: dba/reportdesign/inc/UndoActions.hxx
Log: #i77721# #i79958# class moved File Changes: Directory: /dba/reportdesign/inc/ ================================= File [changed]: UndoActions.hxx Url: http://dba.openoffice.org/source/browse/dba/reportdesign/inc/UndoActions.hxx?r1=1.2.4.1&r2=1.2.4.2 Delta lines: +17 -0 -------------------- --- UndoActions.hxx 2007-07-24 12:46:32+0000 1.2.4.1 +++ UndoActions.hxx 2007-07-25 14:06:33+0000 1.2.4.2 @@ -160,6 +160,23 @@ static ::std::mem_fun_t< ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection> , OReportHelper> getMemberFunction(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XSection >& _xSection); }; + class REPORTDESIGN_DLLPUBLIC UndoManagerListAction + { + private: + SfxUndoManager& m_rManager; + + public: + UndoManagerListAction( SfxUndoManager& _rManager, const String& _rListActionComment ) + :m_rManager( _rManager ) + { + m_rManager.EnterListAction( _rListActionComment, String() ); + } + ~UndoManagerListAction() + { + m_rManager.LeaveListAction(); + } + }; + class REPORTDESIGN_DLLPUBLIC OCommentUndoAction : public SdrUndoAction { protected: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
