| 522 | } |
| 523 | |
| 524 | void removeOverrideBuildDirIndex( KDevelop::IProject* project, bool writeToMainIndex ) |
| 525 | { |
| 526 | KConfigGroup baseGrp = baseGroup(project); |
| 527 | |
| 528 | if( !baseGrp.hasKey(Config::buildDirOverrideIndexKey) ) |
| 529 | return; |
| 530 | if( writeToMainIndex ) |
| 531 | baseGrp.writeEntry( Config::buildDirIndexKey(), baseGrp.readEntry(Config::buildDirOverrideIndexKey) ); |
| 532 | |
| 533 | baseGrp.deleteEntry(Config::buildDirOverrideIndexKey); |
| 534 | } |
| 535 | |
| 536 | ICMakeDocumentation* cmakeDocumentation() |
| 537 | { |
no test coverage detected