-
In systype.h we can read:
#ifdef uint32_t // if we have this one we will have all the others too
typedef unsigned char unsigned8_t;
//...
#else
typedef uint8_t unsigned8_t;
//..
#endif
I think the correct logic is inverted. It should be:
#ifndef uint32_t
...
On the other hand, including stdint.h is not portable for several compilers because it's C99. Maybe we...
03:04PM UTC on Dec 08 2008 in xlsLib
-
bzero is not ANSI C so it should be replaced with a call to memset:
bzero(&bks, sizeof(bks));
with
memset(&bks, 0, sizeof(bks));.
02:59PM UTC on Dec 08 2008 in xlsLib
-
With the 1.2.0 and the latest CVS setting borders have no effect. The following code:
workbook wb;
worksheet* sh = wb.sheet("sheet");
xf_t* fmt = wb.xformat(wb.font("Arial"));
fmt->SetBorderStyle(BORDER_LEFT, BORDER_THIN, COLOR_BLACK);
fmt->SetBorderStyle(BORDER_TOP, BORDER_THIN, COLOR_BLACK);
sh->label(2,1,"test2", fmt);
wb.Dump("file.xls");
Does not show any border. Compiled...
02:56PM UTC on Dec 08 2008 in xlsLib
-
igaztanaga committed patchset 3898 of module boost-sandbox to the Boost Sandbox CVS repository, changing 9 files.
09:26PM UTC on Feb 02 2007 in Boost Sandbox
-
igaztanaga committed patchset 3897 of module boost-sandbox to the Boost Sandbox CVS repository, changing 10 files.
09:12PM UTC on Feb 02 2007 in Boost Sandbox
-
igaztanaga committed patchset 3883 of module boost-sandbox to the Boost Sandbox CVS repository, changing 1 files.
08:22PM UTC on Jan 17 2007 in Boost Sandbox
-
igaztanaga committed patchset 3867 of module boost-sandbox to the Boost Sandbox CVS repository, changing 44 files.
06:42PM UTC on Jan 06 2007 in Boost Sandbox
-
igaztanaga committed patchset 3767 of module boost-sandbox to the Boost Sandbox CVS repository, changing 58 files.
02:46PM UTC on Dec 09 2006 in Boost Sandbox
-
igaztanaga committed patchset 3766 of module boost-sandbox to the Boost Sandbox CVS repository, changing 3 files.
02:45PM UTC on Dec 09 2006 in Boost Sandbox
-
igaztanaga committed patchset 3453 of module boost-sandbox to the Boost Sandbox CVS repository, changing 1 files.
02:48PM UTC on Sep 04 2006 in Boost Sandbox