Add missing semicolon
This commit is contained in:
parent
26fc1804e5
commit
468a6d3f6c
|
@ -83,7 +83,7 @@ void uiComboboxAppend(uiCombobox *c, const char *text)
|
||||||
|
|
||||||
void uiComboboxInsertAt(uiCombobox *c, int n, const char *text)
|
void uiComboboxInsertAt(uiCombobox *c, int n, const char *text)
|
||||||
{
|
{
|
||||||
[c->pbac insert:uiprivToNSString(text) atArrangedObjectIndex:n]
|
[c->pbac insert:uiprivToNSString(text) atArrangedObjectIndex:n];
|
||||||
}
|
}
|
||||||
|
|
||||||
void uiComboboxDelete(uiCombobox *c, int n)
|
void uiComboboxDelete(uiCombobox *c, int n)
|
||||||
|
|
Loading…
Reference in New Issue