-
The function "FXbool FXRangef::intersect(const FXVec3f& u,const FXVec3f& v)" is not declared as const while "FXint FXRangef::intersect(const FXVec4f& plane)" is.
2008-10-31 10:01:45 UTC by nobody
-
Call FXImage::destroy() repeatedly. X Server (running RedHat Enterprise) memory usage doesn't change. XFreePixmap is returning 1.
2008-10-07 16:10:23 UTC by big_iron
-
I forgot to mention, that I used FOX 1.6.33. The Patch is also for this version of FOX.
2008-05-04 22:18:55 UTC by progchild
-
To apply the patch run the following command in the same directory, where the configure.in script is.
$ patch -i msys-patch.diff
Yours sincerely,
Hendrik Rittich.
2008-05-04 21:59:20 UTC by progchild
-
I compiled FOX with Mingw and MSys (a Bash environment for MS Windows). With the command:
$ ./configure --enable-shared --prefix=/mingw
$ make
When running the dirlist.exe the filenames containing non ASCII characters wheren't correctly displayed. I found out, that in the other Windows Makefiles, a Compiler Define "UNICODE" is defined, wich is not defined by the configure script.
The...
2008-05-04 21:56:29 UTC by progchild
-
fxutils.cpp uses the identifier
"IMAGE_SIZEOF_NT_OPTIONAL_HEADER" in the function fxisconsole() for WIN32 builds. The latest Platform SDK (now called "Windows SDK" by Microsoft and available under the name "Windows SDK for Windows Server 2008 and .NET Framework 3.5") does not have that identifier defined in the file WinNT.h. (I did locate it in the Platform SDK for Windows Server 2003 R2...
2008-03-14 19:44:14 UTC by jeremy_furtek
-
Sequence :
progress->setTotal(1000000);
progress->setProgress(1000000);
progress->setTotal(50);
causes a core dump, when progress bar is set as PROGRESSBAR_PERCENTAGE.
Example attached.
2008-01-16 20:27:33 UTC by slawkis
-
%%page has 2 parametr
outf("%%%%Page: %d %d\n", page, page);
and
lpr is bad in windows XP.
2007-08-18 14:01:01 UTC by nobody
-
Changing %I64u to %lld prevents the crash. Not sure if this is the correct solution, but it's got me working again. I hope this bug gets fixed in the next version. Crashes aren't good.
2007-08-16 08:05:18 UTC by jontom
-
It appears to be crashing in FXFileList::listItems().
#ifndef WIN32
#if defined(__LP64__) || defined(_LP64) || (_MIPS_SZLONG == 64) || (__WORDSIZE == 64)
item->label.format("%s\t%s\t%ld\t%s\t%s\t%s\t%s\t%s",name.text(),extension.text(),item->size,mod.text(),usrid.text(),grpid.text(),atts.text(),linkname.text());
#else...
2007-08-16 07:55:05 UTC by jontom