|
From: mamutas <ma...@pr...> - 2003-08-03 02:44:50
|
Also, why do we use defines for style flags? Why not to use static const int instead? See sample of code below. // RED KNIGHT: Modify this names to be consistent with new code convention, that was old code so dont use it that way. If we are going to break the code, then break it completly and we will make things look better. // OLD CONVENTION: _STYLE<something> // NEW CONVENTION: _FS<something> (FS stand for FONTSTYLE) #define _STYLENONE 0 #define _STYLEITALIC 1 #define _STYLEUNDERLINE 2 #define _STYLESTRIKEOUT 4 Regards, mamutas --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.502 / Virus Database: 300 - Release Date: 7/18/2003 |