kopia lustrzana https://github.com/f4exb/sdrangel
Don't change filenames on Android
rodzic
e22688e462
commit
97193ef34d
|
@ -375,11 +375,14 @@ void ConfigurationsDialog::on_configurationExport_clicked()
|
|||
|
||||
if (fileName != "")
|
||||
{
|
||||
#ifndef ANDROID
|
||||
// Can't change filenames on Android
|
||||
QFileInfo fileInfo(fileName);
|
||||
|
||||
if (fileInfo.suffix() != "cfgx") {
|
||||
fileName += ".cfgx";
|
||||
}
|
||||
#endif
|
||||
|
||||
QFile exportFile(fileName);
|
||||
|
||||
|
|
|
@ -297,11 +297,14 @@ void DeviceSetPresetsDialog::on_presetExport_clicked()
|
|||
|
||||
if (fileName != "")
|
||||
{
|
||||
#ifndef ANDROID
|
||||
// Can't change filenames on Android
|
||||
QFileInfo fileInfo(fileName);
|
||||
|
||||
if (fileInfo.suffix() != "prex") {
|
||||
fileName += ".prex";
|
||||
}
|
||||
#endif
|
||||
|
||||
QFile exportFile(fileName);
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue