| 225 | } |
| 226 | |
| 227 | void ProjectCore::registerVariables() |
| 228 | { |
| 229 | globalMacroExpander()->registerFileVariables("CurrentProject", |
| 230 | tr("Current project"), |
| 231 | [] { |
| 232 | auto info = ProjectKeeper::instance()->treeView()->getActiveProjectInfo(); |
| 233 | return QFileInfo(info.workspaceFolder()); |
| 234 | }); |
| 235 | } |
| 236 | |
| 237 | dpf::Plugin::ShutdownFlag ProjectCore::stop() |
| 238 | { |
nothing calls this directly
no test coverage detected