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

Class Index

kdelibs'HlContext (./kdelibs/kwrite/highlight.h:388)

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


kdelibs'HlContext::HlContext() (./kdelibs/kwrite/highlight.cpp:1064)

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