summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-03-01 23:13:39 +0100
committerMichael Stahl <mstahl@redhat.com>2014-03-03 13:53:22 +0100
commitc06f686fe001392ceb7f606f5dc3c775997cc7de (patch)
treede3e97bf64cd1f6f5e11c97e1df5181488e630ce
parent3dc548476c7e88f7a67cc38daf622631a34e34dd (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.cxx2
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;
}