Re: [dev] Re: "FASTBOOL macro" vs "bool" - decrease memory usage

2010-06-24 Thread Patrick Bernard
Hi Here is an excerpt from the C++ standard about the size of fundamental types (clause 5.3.3) : sizeof(char), sizeof(signed char) and sizeof(unsigned char) are 1; the result of sizeof applied to any other fundamental type (3.9.1) is implementation-defined. [Note: in particular, sizeof(bool)

[dev] Mouse Pointer not changed

2010-04-09 Thread Patrick Bernard
Hello In an extension, I create a window with a button. The actionPerformed function (that is called when the button is clicked) first changes the mouse pointer of the button (with XPointer::setType) and then retrieves something on the Internet and displays the result in the window. When I clic