blob: 8fbf391bc0fb4f3b827e18f4c0f1533df5f8bf63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 7 april 2015
#import "uipriv_darwin.h"
// also fine for NSCells and NSTexts (NSTextViews)
void setStandardControlFont(NSControl *control)
{
[control setFont:[NSFont systemFontOfSize:[NSFont systemFontSizeForControlSize:NSRegularControlSize]]];
}
void uiFreeText(char *s)
{
free(s);
}
|