2015-04-07 15:12:28 -05:00
|
|
|
// 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]]];
|
|
|
|
}
|
2015-04-09 10:54:02 -05:00
|
|
|
|
|
|
|
void uiFreeText(char *s)
|
|
|
|
{
|
|
|
|
free(s);
|
|
|
|
}
|