Corrected variables that set the PaintPlane routine, which had been

changed from returning void to returning int without changing the
type of the variable, thus causing a compiler warning.
This commit is contained in:
Tim Edwards
2021-02-18 15:47:40 -05:00
parent 5b2042d078
commit 2d79e0e0ce
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1074,7 +1074,7 @@ SelectAndCopy2(newSourceDef)
SearchContext scx;
Rect editArea, labelArea, expanded;
int plane;
void (*savedPaintPlane)();
int (*savedPaintPlane)();
extern int selACPaintFunc(); /* Forward reference. */
extern int selACCellFunc();