Label was altijd al key

svn path=/Slnkdwf/trunk/; revision=12531
This commit is contained in:
Jos Groot Lipman
2012-01-11 19:26:16 +00:00
parent 185babff53
commit 2d788e8177

View File

@@ -31,15 +31,29 @@ STDMETHODIMP CSLNKEvent::put_DwgY(DOUBLE newVal)
return S_OK;
}
// 2.80 DEPRECATED
STDMETHODIMP CSLNKEvent::get_ContourLabel(BSTR* pVal)
{
CComBSTR bstrString(m_ContourLabel);
CComBSTR bstrString(m_ContourKey);
return bstrString.CopyTo(pVal);
}
// 2.80 DEPRECATED
STDMETHODIMP CSLNKEvent::put_ContourLabel(BSTR newVal)
{
m_ContourLabel = newVal;
m_ContourKey = newVal;
return S_OK;
}
STDMETHODIMP CSLNKEvent::get_ContourKey(BSTR* pVal)
{
CComBSTR bstrString(m_ContourKey);
return bstrString.CopyTo(pVal);
}
STDMETHODIMP CSLNKEvent::put_ContourKey(BSTR newVal)
{
m_ContourKey = newVal;
return S_OK;
}