aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/commitdata.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2012-11-29 23:12:02 +0200
committerOrgad Shaneh <orgads@gmail.com>2012-11-30 13:25:18 +0100
commit1712b86e0e981028074d4ed6682f40a4ba184f77 (patch)
treefe791e590cbb7750b0dd79d14c9a8f82df64f1e8 /src/plugins/git/commitdata.cpp
parent25981d918e1115efb38388ba1255ced3a44e91cc (diff)
Git: Remove description from PanelInfo
It is not used anywhere Change-Id: I9884c4c015bc14cb78e35950c7544c8d004a73ca Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git/commitdata.cpp')
-rw-r--r--src/plugins/git/commitdata.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/git/commitdata.cpp b/src/plugins/git/commitdata.cpp
index a68b166f63..5796198fa6 100644
--- a/src/plugins/git/commitdata.cpp
+++ b/src/plugins/git/commitdata.cpp
@@ -40,14 +40,12 @@ namespace Internal {
void GitSubmitEditorPanelInfo::clear()
{
repository.clear();
- description.clear();
branch.clear();
}
QDebug operator<<(QDebug d, const GitSubmitEditorPanelInfo &data)
{
- d.nospace() << "Rep: " << data.repository << " Descr: " << data.description
- << " branch: " << data.branch;
+ d.nospace() << "Rep: " << data.repository << " branch: " << data.branch;
return d;
}