Bug #491
CtrlLib: EditNumber functions on MinGW GCC
Status: | Approved | Start date: | 07/14/2013 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | CtrlLib | Spent time: | - | |
Target version: | - |
Description
The double version of EditNumber function uses DBL_MIN and DBL_MAX defines from float.h header file. There are such includes for MSC compiler on Windows and GCC compiler on Posix, but not for MinGW GCC on Windows.
Also, double version of EditNumber function is not implemented, because of int type mistake, instead of double.
History
#1 Updated by Sender Ghost almost 12 years ago
- File 491_uppsrc.diff
added
- Status changed from New to Patch ready
I fixed mentioned issues. Also removed unneeded float.h includes from Core/Format.cpp and Geom/polyalg.cpp, which includes Core/Core.h header file.
#2 Updated by Miroslav Fidler almost 12 years ago
- Status changed from Patch ready to Approved
Thanks!