Skip to content
Snippets Groups Projects
Commit 488f4ffe authored by Anton Piccardo-Selg's avatar Anton Piccardo-Selg
Browse files

Refs #16129 Fix qt warning for MdiSubWindow.cpp

parent 92742bbb
No related branches found
No related tags found
No related merge requests found
......@@ -478,7 +478,7 @@ QString MdiSubWindow::parseMacAsciiFile(const QString& fname, const QString &com
}
bool validCommentString = !commentString.isEmpty();
string comment = commentString.ascii();
string comment = commentString.toAscii().constData();
int commentLength = static_cast<int>(comment.size());
rows = 0;
if (maxRows <= 0){//read all valid lines
......
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