[C] Changed some cpp API function names

This commit is contained in:
seleznevae
2019-01-12 14:00:12 +03:00
parent cc4d49df5c
commit 51d270b4a9
3 changed files with 9 additions and 9 deletions

View File

@@ -278,7 +278,7 @@ public:
* - true: Success; cell property was changed.
* - false: In case of error.
*/
bool set_cell_cell_bg_color(enum fort::color value)
bool set_cell_bg_color(enum fort::color value)
{
return set_property(FT_CPROP_CELL_BG_COLOR, static_cast<int>(value));
}
@@ -306,7 +306,7 @@ public:
* - true: Success; cell property was changed.
* - false: In case of error.
*/
bool set_cell_cell_text_style(enum fort::text_style value)
bool set_cell_text_style(enum fort::text_style value)
{
return set_property(FT_CPROP_CELL_TEXT_STYLE, static_cast<int>(value));
}