Bug 630935: Support NPNVsupportsCarbonBool variable for OOPP on Mac OS X. r=benwa a=blocking2.0final+

This commit is contained in:
Josh Aas 2011-02-02 13:05:55 -08:00
Родитель 3b3c0474b2
Коммит 366daa6594
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -414,6 +414,13 @@ PluginInstanceChild::NPN_GetValue(NPNVariable aVar,
return NPERR_NO_ERROR;
}
#ifndef NP_NO_CARBON
case NPNVsupportsCarbonBool: {
*((NPBool*)aValue) = false;
return NPERR_NO_ERROR;
}
#endif
case NPNVsupportsUpdatedCocoaTextInputBool: {
*static_cast<NPBool*>(aValue) = true;
return NPERR_NO_ERROR;