Removed the declaration of newControl(): it was completely unused, as it was superceded by uiAllocControl() long ago.

This commit is contained in:
Pietro Gagliardi 2018-04-15 21:49:58 -04:00
parent f93973d3cb
commit 59835a9bae
2 changed files with 0 additions and 6 deletions

View File

@ -1,7 +1,4 @@
// control.c
extern uiControl *newControl(size_t size, uint32_t OSsig, uint32_t typesig, const char *typenamestr);
// shouldquit.c
extern int shouldQuit(void);

View File

@ -33,9 +33,6 @@ extern void uiprivDoImplBug(const char *file, const char *line, const char *func
extern void uiprivDoUserBug(const char *file, const char *line, const char *func, const char *format, ...);
#define uiprivUserBug(...) uiprivDoUserBug(__FILE__, uiprivMacro_ns(__LINE__), uiprivMacro__func__, __VA_ARGS__)
// control.c
extern uiControl *newControl(size_t size, uint32_t OSsig, uint32_t typesig, const char *typenamestr);
// shouldquit.c
extern int shouldQuit(void);