1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-03 20:34:14 +01:00

Added WMSetTabViewFont().

This commit is contained in:
dan
1999-05-16 15:11:13 +00:00
parent 64fcfedd48
commit 237fa3ce01
2 changed files with 12 additions and 0 deletions

View File

@@ -601,6 +601,16 @@ WMCreateTabViewItemWithIdentifier(int identifier)
}
void
WMSetTabViewFont(WMTabView *tPtr, WMFont *font)
{
if (tPtr->font)
WMReleaseFont(tPtr->font);
tPtr->font = WMRetainFont(font);
}
void
WMSetTabViewItemLabel(WMTabViewItem *item, char *label)
{