mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Replace deprecated endl with Qt::endl
This commit is contained in:
committed by
Mat Sutcliffe
parent
1e633a5704
commit
9fa3221abc
@@ -41,9 +41,9 @@ int main(int argc, char *argv[])
|
||||
QObject::connect(&lineReader, &CLineReader::finished, &a, &QCoreApplication::quit);
|
||||
|
||||
QTextStream qtout(stdout);
|
||||
qtout << "Usage: <lat> <lon>" << endl;
|
||||
qtout << "Example: 48.5 11.5" << endl;
|
||||
qtout << "Type x to quit" << endl;
|
||||
qtout << "Usage: <lat> <lon>" << Qt::endl;
|
||||
qtout << "Example: 48.5 11.5" << Qt::endl;
|
||||
qtout << "Type x to quit" << Qt::endl;
|
||||
|
||||
lineReader.start();
|
||||
return a.exec();
|
||||
|
||||
Reference in New Issue
Block a user