~ubuntu-branches/ubuntu/wily/apvlv/wily

« back to all changes in this revision

Viewing changes to src/ApvlvCmds.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Gaertner, Lukas Gaertner, Stefan Ritter
  • Date: 2010-12-23 15:28:02 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20101223152802-ll13lmtpxmylbiqz
Tags: 0.0.9.8-1
[Lukas Gaertner]
* Adopt package (Closes: #607320)

[Stefan Ritter]
* Add libdjvulibre-dev to build dependencies (Closes: #602010)
* Bump Standards-Version to 3.9.1
* Imported Upstream version 0.0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 
82
82
    mHasPreCount = false;
83
83
 
84
 
    mPreCount = 0;
 
84
    mPreCount = 1;
85
85
 
86
86
    mNext = NULL;
87
87
 
164
164
          {
165
165
            gint key = keyval (k);
166
166
            if (key > 0)
167
 
              gView->process (precount (), keyval (k));
 
167
              gView->process (mHasPreCount, precount (), keyval (k));
168
168
          }
169
169
      }
170
170
 
276
276
  void ApvlvCmd::precount (gint precount)
277
277
  {
278
278
    mPreCount = precount;
 
279
    mHasPreCount = true;
279
280
  }
280
281
 
281
282
  gint ApvlvCmd::precount ()