diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-03-01 23:13:39 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-03-03 13:53:22 +0100 |
commit | c06f686fe001392ceb7f606f5dc3c775997cc7de (patch) | |
tree | de3e97bf64cd1f6f5e11c97e1df5181488e630ce | |
parent | 3dc548476c7e88f7a67cc38daf622631a34e34dd (diff) |
fdo#47811: fix setPropertyValue("Name") of Database fieldmaster
This one is assigning to the wrong pType variable.
(regression from CWS swwarnings)
Change-Id: I9a74734d22313f215ed69c9a57edf7eb035736ea
-rw-r--r-- | sw/source/core/unocore/unofield.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/unocore/unofield.cxx b/sw/source/core/unocore/unofield.cxx index d529fabb5db4..044dcb13d121 100644 --- a/sw/source/core/unocore/unofield.cxx +++ b/sw/source/core/unocore/unofield.cxx @@ -645,7 +645,7 @@ throw (beans::UnknownPropertyException, beans::PropertyVetoException, case RES_DBFLD : { rValue >>= m_pImpl->m_sParam3; - pType = GetFldType(); + pType2 = GetFldType(); } break; } |