diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-10 17:06:59 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-10 17:06:59 -0400 |
| commit | 3069f38a9c0e91d13fe8a9274d1faa79107c87f4 (patch) | |
| tree | 82dcf26ab9cf0c4792ecef66e39ce88c0d03b620 /new/text_darwin.m | |
| parent | d326407f05cadec6422fe3ccbcfcaf41a869dfde (diff) | |
Removed autocorrect from Mac OS X uiEntries. Also moved uiFreeText() to text_darwin.m.
Diffstat (limited to 'new/text_darwin.m')
| -rw-r--r-- | new/text_darwin.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/new/text_darwin.m b/new/text_darwin.m index 4f36356..f0d3dab 100644 --- a/new/text_darwin.m +++ b/new/text_darwin.m @@ -12,3 +12,8 @@ char *uiDarwinNSStringToText(NSString *s) } return out; } + +void uiFreeText(char *s) +{ + free(s); +} |
