void Runner::showResultDir() const { if (opts().getShowResultDirectory()) { showInFileManager(finalProjectFolder); } }
void IssuesWidget::slotOpenFile(QTreeWidgetItem *item, int) { QString fileName = item->text(1); if (Folder *folder = ProtocolItem::folder(item)) { // folder->path() always comes back with trailing path QString fullPath = folder->path() + fileName; if (QFile(fullPath).exists()) { showInFileManager(fullPath); } } }
void ownCloudGui::slotOpenPath(const QString &path) { showInFileManager(path); }