~alanbell/dasher/ircfix-lp579181

« back to all changes in this revision

Viewing changes to Src/DasherCore/Event.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-02-13 08:08:15 UTC
  • mfrom: (1.2.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20070213080815-bpx0yjnzkwfamvi8
Tags: 4.3.4-0ubuntu1
* New upstream release:
  - Updated rendering routines
  - General tidying of gobject implemenatations
  - Translation updates
* debian/rules: 
  - build with --enable-joystick.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
class Dasher::CEditContextEvent:public Dasher::CEvent {
54
54
public:
55
 
  CEditContextEvent(int iMaxLength) {
 
55
  CEditContextEvent(int iOffset, int iLength) {
56
56
    m_iEventType = EV_EDIT_CONTEXT;
57
 
    m_iMaxLength = iMaxLength;
 
57
    m_iOffset = iOffset;
 
58
    m_iLength = iLength;
58
59
  };
59
60
 
60
 
  int m_iMaxLength;
 
61
  int m_iOffset;
 
62
  int m_iLength;
61
63
};
62
64
 
63
65
class Dasher::CStartEvent:public Dasher::CEvent {