| 160 | return m_config.readEntry("case_sens", true); |
| 161 | } |
| 162 | QStringList searchPathsList(const GrepViewPlugin& plugin) const |
| 163 | { |
| 164 | const bool isAnyProjectOpen = plugin.core()->projectController()->projectCount() != 0; |
| 165 | return m_config.readEntry("SearchPaths", |
| 166 | QStringList{isAnyProjectOpen ? allOpenProjectsString() : QDir::homePath()}); |
| 167 | } |
| 168 | int depth() const |
| 169 | { |
| 170 | return m_config.readEntry("depth", -1); |
no test coverage detected