MCPcopy Create free account
hub / github.com/KDE/kdevelop / GrepJob

Method GrepJob

plugins/grepview/grepjob.cpp:133–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133GrepJob::GrepJob( QObject* parent )
134 : KJob( parent )
135 , m_workState(WorkUnstarted)
136 , m_fileIndex(0)
137 , m_findThread(nullptr)
138 , m_findSomething(false)
139{
140 qRegisterMetaType<GrepOutputItem::List>();
141
142 setCapabilities(Killable);
143 KDevelop::ICore::self()->uiController()->registerStatus(this);
144
145 connect(this, &GrepJob::result, this, &GrepJob::testFinishState);
146}
147
148GrepJob::~GrepJob()
149{

Callers

nothing calls this directly

Calls 2

uiControllerMethod · 0.80
registerStatusMethod · 0.45

Tested by

no test coverage detected