| 122 | } |
| 123 | |
| 124 | DocumentChangeSet::ChangeResult BasicRefactoring::addRenameFileChanges(const QUrl& current, |
| 125 | const QString& newName, |
| 126 | DocumentChangeSet* changes) |
| 127 | { |
| 128 | return changes->addDocumentRenameChange( |
| 129 | IndexedString(current), IndexedString(newFileName(current, newName))); |
| 130 | } |
| 131 | |
| 132 | bool BasicRefactoring::shouldRenameFile(Declaration* declaration) |
| 133 | { |
no test coverage detected