Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'HlInt (./kdelibs/kwrite/highlight.h:112)
class HlInt : public HlItemWw {
public:
HlInt(int attribute, int context);
virtual const QChar *checkHgl(const QChar *);
};
kdelibs'HlInt::HlInt() (./kdelibs/kwrite/highlight.cpp:312)
HlInt::HlInt(int attribute, int context)
: HlItemWw(attribute,context) {
}
kdelibs'HlInt::checkHgl() (./kdelibs/kwrite/highlight.cpp:316)
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;
}