~ubuntu-branches/ubuntu/edgy/libwpd/edgy-security

« back to all changes in this revision

Viewing changes to src/lib/WP6UndoGroup.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Rene Engelhard
  • Date: 2005-12-09 16:20:02 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20051209162002-6yx3aa0jrh06oocj
Tags: 0.8.4-2
* re-autogen to fix hppa build
* update automake builddep and add autoconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *
15
15
 * You should have received a copy of the GNU Library General Public
16
16
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18
18
 *
19
19
 * For further information visit http://libwpd.sourceforge.net
20
20
 */
24
24
 */
25
25
 
26
26
#include "WP6UndoGroup.h"
27
 
#include "WP6LLListener.h"
28
27
#include "libwpd_internal.h"
29
28
 
30
29
WP6UndoGroup::WP6UndoGroup(WPXInputStream *input, uint8_t groupID)
39
38
        m_undoLevel = readU16(input);
40
39
}
41
40
 
42
 
void WP6UndoGroup::parse(WP6HLListener *listener)
 
41
void WP6UndoGroup::parse(WP6Listener *listener)
43
42
{
44
43
        listener->undoChange(m_undoType, m_undoLevel);
45
44
}