Commit c72d7204e467c01227c41eebd7aa9338c289102e
1 parent
b9416a49
Exists in
master
and in
5 other branches
Retirando traces na versao windows
Showing
1 changed file
with
0 additions
and
11 deletions
Show diff stats
src/lib3270/screen.c
| ... | ... | @@ -302,10 +302,6 @@ void screen_update(H3270 *session, int bstart, int bend) |
| 302 | 302 | a = color_from_fa(session,fa); |
| 303 | 303 | fa_addr = find_field_attribute(session,bstart); // may be -1, that's okay |
| 304 | 304 | |
| 305 | -#ifdef WIN32 | |
| 306 | - trace("%s start=%d end=%d",__FUNCTION__,bstart,bend); | |
| 307 | -#endif // WIN32 | |
| 308 | - | |
| 309 | 305 | for(baddr = bstart; baddr < bend; baddr++) |
| 310 | 306 | { |
| 311 | 307 | if(session->ea_buf[baddr].fa) |
| ... | ... | @@ -351,10 +347,6 @@ void screen_update(H3270 *session, int bstart, int bend) |
| 351 | 347 | } |
| 352 | 348 | } |
| 353 | 349 | |
| 354 | -#ifdef WIN32 | |
| 355 | - trace("%s first=%d last=%d",__FUNCTION__,first,last); | |
| 356 | -#endif // WIN32 | |
| 357 | - | |
| 358 | 350 | if(first >= 0) |
| 359 | 351 | { |
| 360 | 352 | int len = (last - first)+1; |
| ... | ... | @@ -366,9 +358,6 @@ void screen_update(H3270 *session, int bstart, int bend) |
| 366 | 358 | len++; |
| 367 | 359 | } |
| 368 | 360 | |
| 369 | -#ifdef WIN32 | |
| 370 | - trace("%s first=%d last=%d len=%d changed=%p",__FUNCTION__,first,last,len,session->changed); | |
| 371 | -#endif // WIN32 | |
| 372 | 361 | session->changed(session,first,len); |
| 373 | 362 | } |
| 374 | 363 | ... | ... |