2012-09-30 00:41 UTC+0200 Viktor Szakats (harbour syenar.net)

* include/button.ch
    * changed file mime-type to UTF8
    + added UTF8 equivalent of CP437 encoded CHR() calls
      in comments.
This commit is contained in:
Viktor Szakats
2012-09-29 22:42:26 +00:00
parent 055f8be3cf
commit cc825da61a
2 changed files with 10 additions and 4 deletions

View File

@@ -16,6 +16,12 @@
The license applies to all entries newer than 2009-04-28.
*/
2012-09-30 00:41 UTC+0200 Viktor Szakats (harbour syenar.net)
* include/button.ch
* changed file mime-type to UTF8
+ added UTF8 equivalent of CP437 encoded CHR() calls
in comments.
2012-09-29 22:06 UTC+0200 Viktor Szakats (harbour syenar.net)
* src/3rd/tiff/Makefile
* src/3rd/tiff/*

View File

@@ -59,10 +59,10 @@
#define SCROLL_HORIZONTAL 2
/* menu separators strings */
#define MENU_SEPARATOR Chr( 196 )
#define SEPARATOR_DOUBLE ( Chr( 204 ) + Chr( 205 ) + Chr( 185 ) ) /* double line left and right and double separator for popup menu */
#define SEPARATOR_SINGLE ( Chr( 195 ) + MENU_SEPARATOR + Chr( 180 ) ) /* single separator for popup menu */
#define SEPARATOR_DOUBLE_SINGLE ( Chr( 199 ) + MENU_SEPARATOR + Chr( 182 ) ) /* double line left and right and single separator for popup menu */
#define MENU_SEPARATOR Chr( 196 ) /* "─" */
#define SEPARATOR_DOUBLE ( Chr( 204 ) + Chr( 205 ) + Chr( 185 ) ) /* "╠═╣" double line left and right and double separator for popup menu */
#define SEPARATOR_SINGLE ( Chr( 195 ) + MENU_SEPARATOR + Chr( 180 ) ) /* "├" "┤" single separator for popup menu */
#define SEPARATOR_DOUBLE_SINGLE ( Chr( 199 ) + MENU_SEPARATOR + Chr( 182 ) ) /* "╟" "╢" double line left and right and single separator for popup menu */
/* return values for HitTest methods */
#define HTNOWHERE 0