-
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...
2008-12-08 15:04:11 UTC 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));.
2008-12-08 14:59:45 UTC 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...
2008-12-08 14:56:22 UTC in xlsLib
-
igaztanaga committed patchset 3898 of module boost-sandbox to the Boost Sandbox CVS repository, changing 9 files.
2007-02-02 21:26:09 UTC in Boost Sandbox
-
igaztanaga committed patchset 3897 of module boost-sandbox to the Boost Sandbox CVS repository, changing 10 files.
2007-02-02 21:12:10 UTC in Boost Sandbox
-
igaztanaga committed patchset 3883 of module boost-sandbox to the Boost Sandbox CVS repository, changing 1 files.
2007-01-17 20:22:30 UTC in Boost Sandbox
-
igaztanaga committed patchset 3867 of module boost-sandbox to the Boost Sandbox CVS repository, changing 44 files.
2007-01-06 18:42:05 UTC in Boost Sandbox
-
igaztanaga committed patchset 3767 of module boost-sandbox to the Boost Sandbox CVS repository, changing 58 files.
2006-12-09 14:46:29 UTC in Boost Sandbox
-
igaztanaga committed patchset 3766 of module boost-sandbox to the Boost Sandbox CVS repository, changing 3 files.
2006-12-09 14:45:47 UTC in Boost Sandbox
-
igaztanaga committed patchset 3453 of module boost-sandbox to the Boost Sandbox CVS repository, changing 1 files.
2006-09-04 14:48:40 UTC in Boost Sandbox