| 131 | } |
| 132 | |
| 133 | GrepJob::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 | |
| 148 | GrepJob::~GrepJob() |
| 149 | { |
nothing calls this directly
no test coverage detected