Source Code (Use browser search to find items of interest.)
Class Index
kdelibs'HlAdaChar (./kdelibs/kwrite/highlight.h:230)
class HlAdaChar : public HlItemWw {
public:
HlAdaChar(int attribute, int context);
virtual const QChar *checkHgl(const QChar *);
};
kdelibs'HlAdaChar::HlAdaChar() (./kdelibs/kwrite/highlight.cpp:685)
HlAdaChar::HlAdaChar(int attribute, int context)
: HlItemWw(attribute,context) {
}
kdelibs'HlAdaChar::checkHgl() (./kdelibs/kwrite/highlight.cpp:689)
const QChar *HlAdaChar::checkHgl(const QChar *s) {
if (s[0] == '\'' && s[1] && s[2] == '\'') return s + 3;
return 0L;
}