diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2016-02-10 11:19:27 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2016-02-10 15:01:57 +0000 |
commit | b4195d51746d86f4aa459d07d14a328c7945981a (patch) | |
tree | ca13ba842a38e2514a923eb6a9ecadd439159110 /src/plugins/git/gitutils.cpp | |
parent | 7db0023e8c97336e0e449552410de674bbe2ffd0 (diff) | |
download | qt-creator-b4195d51746d86f4aa459d07d14a328c7945981a.tar.gz |
Git: Modernize
* pragma once
* member initialization
* s/struct/class/
* Introduce a static GitPlugin::client() method and use it
Change-Id: Ifdcac86dd16f3cdba11d564d03e9a15f00a6afdb
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/git/gitutils.cpp')
-rw-r--r-- | src/plugins/git/gitutils.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/plugins/git/gitutils.cpp b/src/plugins/git/gitutils.cpp index f89536dcc7..8ddfc0072f 100644 --- a/src/plugins/git/gitutils.cpp +++ b/src/plugins/git/gitutils.cpp @@ -25,20 +25,12 @@ #include "gitutils.h" -#include <QDebug> #include <QInputDialog> #include <QLineEdit> namespace Git { namespace Internal { -QDebug operator<<(QDebug d, const Stash &s) -{ - QDebug nospace = d.nospace(); - nospace << "name=" << s.name << " branch=" << s.branch << " message=" << s.message; - return d; -} - void Stash::clear() { name.clear(); |