summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-08-04 14:03:41 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-09-03 16:53:44 +0200
commitae37f7679ec0ec6c50f8804e5c99d0a2f03d01a8 (patch)
tree5f2b8f3c6602e6d710328ed9a673bb319a9d8f44 /src
parent34a61be27cf72f9337131ff5b429e75e4d67e580 (diff)
downloadqt-creator-ae37f7679ec0ec6c50f8804e5c99d0a2f03d01a8.tar.gz
ExternalTool: Add missing member to assignment operator
Detected by CppCheck Change-Id: I6a5a7b5707619e3588d8a52d3fd31ffc446a5ca1 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/coreplugin/externaltool.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/externaltool.cpp b/src/plugins/coreplugin/externaltool.cpp
index b9c68433f5..d8e44e4ca2 100644
--- a/src/plugins/coreplugin/externaltool.cpp
+++ b/src/plugins/coreplugin/externaltool.cpp
@@ -128,6 +128,7 @@ ExternalTool &ExternalTool::operator=(const ExternalTool &other)
m_errorHandling = other.m_errorHandling;
m_modifiesCurrentDocument = other.m_modifiesCurrentDocument;
m_fileName = other.m_fileName;
+ m_presetFileName = other.m_presetFileName;
m_presetTool = other.m_presetTool;
return *this;
}