diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-05 08:10:28 +0100 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-05 14:48:18 +0100 |
commit | 2ad53a5100bd7d6dc8caf043b74190f20f0387eb (patch) | |
tree | 462e342b2aa12a4c8deb98c79c77a1d24ec47424 /heimdall-frontend/source | |
parent | Added missing info to the Windows README (diff) | |
download | Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar.gz Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar.bz2 Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar.lz Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar.xz Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.tar.zst Heimdall-2ad53a5100bd7d6dc8caf043b74190f20f0387eb.zip |
Diffstat (limited to 'heimdall-frontend/source')
-rw-r--r-- | heimdall-frontend/source/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/heimdall-frontend/source/mainwindow.cpp b/heimdall-frontend/source/mainwindow.cpp index 55fc2db..e110d69 100644 --- a/heimdall-frontend/source/mainwindow.cpp +++ b/heimdall-frontend/source/mainwindow.cpp @@ -505,7 +505,7 @@ void MainWindow::SelectFirmwarePackage(void) loadedPackageData.Clear(); UpdatePackageUserInterface(); - QString path = PromptFileSelection("Select Package", "*.tar.gz"); + QString path = PromptFileSelection("Select Package", "Firmware Package (*.gz)"); firmwarePackageLineEdit->setText(path); if (firmwarePackageLineEdit->text() != "") @@ -1059,7 +1059,7 @@ void MainWindow::RemoveDevice(void) void MainWindow::BuildPackage(void) { - QString packagePath = PromptFileCreation("Save Package", "*.tar.gz"); + QString packagePath = PromptFileCreation("Save Package", "Firmware Package (*.gz)"); if (!packagePath.isEmpty()) { |