Even *more* uiButton.md fixups.

This commit is contained in:
Pietro Gagliardi 2015-04-20 15:29:06 -04:00
parent 3f92d7877e
commit 50bf3b8cab
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ Windows | Unix | OS X
uiButton derives from [uiControl](uiControl.md).
## uiNewButton()
## constructor NewButton()
```c
uiButton *uiNewButton(const char *text);
@ -28,7 +28,7 @@ void uiButtonSetText(uiButton *b, const char *text);
```
Changes the text shown on the uiButton to the given text string.
## func OnClicked
## func OnClicked()
```c
void uiButtonOnClicked(uiButton *b, void (*handler)(uiButton *, void *), void *data);
```