Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
4f55790f
Commit
4f55790f
authored
Dec 28, 2010
by
lm
Browse files
Fixed minor issue with log file name
parent
78f9170f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/QGCDataPlot2D.cc
View file @
4f55790f
...
...
@@ -269,7 +269,7 @@ void QGCDataPlot2D::selectFile()
// Let user select the log file name
//QDate date(QDate::currentDate());
// QString("./pixhawk-log-" + date.toString("yyyy-MM-dd") + "-" + QString::number(logindex) + ".log")
fileName
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Specify log file name"
),
tr
(
"."
),
tr
(
"Logfile (*.txt
)"
)
)
;
fileName
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Specify log file name"
),
QString
(),
"Logfile (*.csv *.txt *.log
)"
);
// Store reference to file
QFileInfo
fileInfo
(
fileName
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment