Kaydet (Commit) e569e0ad authored tarafından Luboš Luňák's avatar Luboš Luňák

do not initialize a field with itself

üst dc3ea99b
...@@ -111,7 +111,7 @@ namespace dbaui ...@@ -111,7 +111,7 @@ namespace dbaui
//------------------------------------------------------------------------- //-------------------------------------------------------------------------
CharsetDisplayDerefHelper::CharsetDisplayDerefHelper(const CharsetDisplayDerefHelper& _rSource) CharsetDisplayDerefHelper::CharsetDisplayDerefHelper(const CharsetDisplayDerefHelper& _rSource)
:CharsetDisplayDerefHelper_Base(_rSource) :CharsetDisplayDerefHelper_Base(_rSource)
,m_sDisplayName(m_sDisplayName) ,m_sDisplayName(_rSource.m_sDisplayName)
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment