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

Class Index

kdevelop'HlSatherString (./kdevelop/kdevelop/kwrite/highlight.h:266)

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


kdevelop'HlSatherString::HlSatherString() (./kdevelop/kdevelop/kwrite/highlight.cpp:791)

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


kdevelop'HlSatherString::checkHgl() (./kdevelop/kdevelop/kwrite/highlight.cpp:795)

const QChar *HlSatherString::checkHgl(const QChar *s) {
  if (*s == '\"') {
    s++;
    while (*s != '\"') {
      if (*s == '\\')
        s++;
      if (*s == '\n' || *s == '\0')
        return s;
      s++;
    }
    return s+1;
  }
  return 0L;
}