Source Code (Use browser search to find items of interest.)
Class Index
kdevelop'HlLineContinue (./kdevelop/kdevelop/kwrite/highlight.h:148)
class HlLineContinue : public HlItem {
public:
HlLineContinue(int attribute, int context);
virtual bool endEnable(QChar c) {return c == '\0';}
virtual const QChar *checkHgl(const QChar *);
};
kdevelop'HlLineContinue::HlLineContinue() (./kdevelop/kdevelop/kwrite/highlight.cpp:414)
HlLineContinue::HlLineContinue(int attribute, int context)
: HlItem(attribute,context) {
}
kdevelop'HlLineContinue::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:418)
const QChar *HlLineContinue::checkHgl(const QChar *s) {
if (*s == '\\') return s + 1;
return 0L;
}