diff options
author | David Schulz <david.schulz@qt.io> | 2020-01-17 14:37:08 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-01-17 13:50:57 +0000 |
commit | 7021b1f078cc9d10ea943b6fbca85b679b3376a0 (patch) | |
tree | 5082ee42f35868b858823e4ea290780789256b5f /src/plugins/git/gerrit/authenticationdialog.cpp | |
parent | 37e7b72609e57331dad8de22989e5672ae6f45ea (diff) | |
download | qt-creator-7021b1f078cc9d10ea943b6fbca85b679b3376a0.tar.gz |
Workaround 5.15 deprecations in QTextStreams
Change-Id: Ifc2b7fd353e7c12346e9716115e830679cea7666
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/git/gerrit/authenticationdialog.cpp')
-rw-r--r-- | src/plugins/git/gerrit/authenticationdialog.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/git/gerrit/authenticationdialog.cpp b/src/plugins/git/gerrit/authenticationdialog.cpp index bb9d267ca7..ba0516df59 100644 --- a/src/plugins/git/gerrit/authenticationdialog.cpp +++ b/src/plugins/git/gerrit/authenticationdialog.cpp @@ -39,8 +39,6 @@ #include <QTextStream> #include <QTimer> -using namespace Qt; - namespace Gerrit { namespace Internal { @@ -152,10 +150,10 @@ bool AuthenticationDialog::setupCredentials() replaceEntry(line, "login", user); replaceEntry(line, "password", password); } - out << line << endl; + out << line << '\n'; } if (!found) - out << "machine " << m_server->host << " login " << user << " password " << password << endl; + out << "machine " << m_server->host << " login " << user << " password " << password << '\n'; Utils::FileSaver saver(m_netrcFileName, QFile::WriteOnly | QFile::Truncate | QFile::Text); saver.write(netrcContents.toUtf8()); return saver.finalize(); |