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

Class Index

kdevelop'HlContext (./kdevelop/kdevelop/kwrite/highlight.h:382)

class HlContext {
  public:
    HlContext(int attribute, int lineEndContext);
    QList<HlItem> items;
    int attr;
    int ctx;
};


kdevelop'HlContext::HlContext() (./kdevelop/kdevelop/kwrite/highlight.cpp:1033)

HlContext::HlContext(int attribute, int lineEndContext)
  : attr(attribute), ctx(lineEndContext) {
  items.setAutoDelete(true);
}