~ubuntu-branches/ubuntu/karmic/piklab/karmic

« back to all changes in this revision

Viewing changes to src/common/gui/hexword_gui.h

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz
  • Date: 2008-01-25 22:26:25 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080125222625-p27qjurf8xiu5t8p
Tags: 0.15.2-1
* New Upstream Release.
* Bumped standards version from 3.7.2 to 3.7.3. No changes needed.
* Added Homepage label to debian/control.
* Added manpage for piklab-coff.
* Added -Wl,--as-needed to LDFLAGS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
  BitValue _word;
79
79
 
80
80
  virtual bool isValid() const { return true; }
81
 
  virtual BitValue mask() const { return maxValue(Number::Hex, _nbChars); }
 
81
  virtual BitValue mask() const { return maxValue(NumberBase::Hex, _nbChars); }
82
82
  virtual BitValue normalizeWord(BitValue value) const { return value.maskWith(mask()); }
83
83
  virtual BitValue word() const { return _word; }
84
84
  virtual void setWord(BitValue value) { _word = value; }