diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:58:32 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:58:32 +0000 |
commit | dcbbcc1dbe05c4763492d2cf34eb14c14cc58e7d (patch) | |
tree | 08b9be9228928e4f63e93d7138598cc3f1857eb5 /agg | |
parent | 1a179bdc7bf6ea0032521368a563c040289d52c4 (diff) |
INTEGRATION: CWS warnings01 (1.1.4); FILE MERGED
2005/12/02 10:37:49 mbu 1.1.4.1: necessary changes to prevent warnings
Diffstat (limited to 'agg')
-rwxr-xr-x | agg/source/agg_arrowhead.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/agg/source/agg_arrowhead.cpp b/agg/source/agg_arrowhead.cpp index 9663a40..7f3a027 100755 --- a/agg/source/agg_arrowhead.cpp +++ b/agg/source/agg_arrowhead.cpp @@ -66,7 +66,7 @@ namespace agg m_cmd[3] = path_cmd_line_to; m_cmd[4] = path_cmd_line_to; m_cmd[5] = path_cmd_line_to; - m_cmd[7] = path_cmd_end_poly | path_flags_close | path_flags_ccw; + m_cmd[7] = (unsigned)path_cmd_end_poly | (unsigned)path_flags_close | (unsigned)path_flags_ccw; m_cmd[6] = path_cmd_stop; return; } @@ -87,7 +87,7 @@ namespace agg m_cmd[1] = path_cmd_line_to; m_cmd[2] = path_cmd_line_to; m_cmd[3] = path_cmd_line_to; - m_cmd[4] = path_cmd_end_poly | path_flags_close | path_flags_ccw; + m_cmd[4] = (unsigned)path_cmd_end_poly | (unsigned)path_flags_close | (unsigned)path_flags_ccw; m_cmd[5] = path_cmd_stop; return; } |