Esempio n. 1
0
void Runner::showResultDir() const {

    if (opts().getShowResultDirectory()) {

        showInFileManager(finalProjectFolder);
    }
}
Esempio n. 2
0
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);
        }
    }
}
Esempio n. 3
0
void ownCloudGui::slotOpenPath(const QString &path)
{
    showInFileManager(path);
}