Skip to content
Snippets Groups Projects
Commit a3f5bd79 authored by dogmaphobic's avatar dogmaphobic
Browse files

Fixing missing argument in Debug builds

parent fcf4fda2
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ QString QGCFileDialog::getSaveFileName(QWidget* parent, ...@@ -95,7 +95,7 @@ QString QGCFileDialog::getSaveFileName(QWidget* parent,
#ifdef QT_DEBUG #ifdef QT_DEBUG
if (qgcApp()->runningUnitTests()) { if (qgcApp()->runningUnitTests()) {
return UnitTest::_getSaveFileName(parent, caption, dir, filter, selectedFilter, options); return UnitTest::_getSaveFileName(parent, caption, dir, filter, selectedFilter, options, defaultSuffix);
} else } else
#endif #endif
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment