Page 1 of 1

Warning in any PRG [Fixed]

Posted: Sun Sep 02, 2018 1:55 pm
by Enrico Maria Giordano
Using latest FWH, we have this warning in any PRG:

Code: Select all

Warning W0003  Variable: '_FWHTMP_' declared but not used in function: '*(2014)'
EMG

Re: Warning in any PRG

Posted: Mon Sep 03, 2018 5:19 pm
by nageswaragunupudi
Please substitute this statement at line no. 2014 in \fwh\include\fivewin.ch:

Substitute

Code: Select all

static _fwhtmp_
with

Code: Select all

static _fwhtmp_  := nil
Regret the inconvenience.

Re: Warning in any PRG

Posted: Mon Sep 03, 2018 5:36 pm
by Enrico Maria Giordano
Thank you.

EMG