Source Code (Use browser search to find items of interest.)

Class Index

kdevelop'HlInt (./kdevelop/kdevelop/kwrite/highlight.h:112)

class HlInt : public HlItemWw {
  public:
    HlInt(int attribute, int context);
    virtual const QChar *checkHgl(const QChar *);
};


kdevelop'HlInt::HlInt() (./kdevelop/kdevelop/kwrite/highlight.cpp:291)

HlInt::HlInt(int attribute, int context)
  : HlItemWw(attribute,context) {
}


kdevelop'HlInt::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:295)

const QChar *HlInt::checkHgl(const QChar *str) {
  const QChar *s;

  s = str;
  while (*s >= '0' && *s <= '9') s++;
  if (s > str) return s;
  return 0L;
}