diff --git a/app/widget/projectexplorer/projectexplorer.cpp b/app/widget/projectexplorer/projectexplorer.cpp index 3c5ce6f07..e0ca1aff2 100644 --- a/app/widget/projectexplorer/projectexplorer.cpp +++ b/app/widget/projectexplorer/projectexplorer.cpp @@ -577,7 +577,6 @@ ProjectExplorer::FootageDeleteResponse ProjectExplorer::DeleteWarningMessage() { QMessageBox msgBox; msgBox.setText(tr("This footage is in use.")); - msgBox.setInformativeText(tr("Do you want to offline the footage or entirely delete it from the timeline?")); QPushButton* offline = msgBox.addButton(tr("Offline Footage"), QMessageBox::ApplyRole); QPushButton* deleteClips = msgBox.addButton(tr("Delete Clips"), QMessageBox::ApplyRole); msgBox.setStandardButtons(QMessageBox::Cancel); diff --git a/app/widget/projectexplorer/projectexplorer.h b/app/widget/projectexplorer/projectexplorer.h index b755401ac..907da2964 100644 --- a/app/widget/projectexplorer/projectexplorer.h +++ b/app/widget/projectexplorer/projectexplorer.h @@ -117,7 +117,8 @@ private: /** * @brief Check if an item is in use anywhere and return any relevant input nodes - * Returns a QList as Footage has two streams that need to be handled + * + * Returns a QMap pairing a Footage node to its StreamPtr */ QMap GetFootageNodes(Item* item);