User: hr Date: 2007-08-03 09:47:41+0000 Modified: dba/reportdesign/inc/UndoActions.hxx
Log: INTEGRATION: CWS rpt23fix02 (1.2.4); FILE MERGED 2007/07/25 14:06:33 oj 1.2.4.2: #i77721# #i79958# class moved 2007/07/24 12:46:32 oj 1.2.4.1: merge from rpt23fix01 File Changes: Directory: /dba/reportdesign/inc/ ================================= File [changed]: UndoActions.hxx Url: http://dba.openoffice.org/source/browse/dba/reportdesign/inc/UndoActions.hxx?r1=1.3&r2=1.4 Delta lines: +17 -0 -------------------- --- UndoActions.hxx 2007-08-02 14:27:39+0000 1.3 +++ UndoActions.hxx 2007-08-03 09:47:39+0000 1.4 @@ -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]
