Label was altijd al key
svn path=/Slnkdwf/trunk/; revision=12531
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user