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,10 +302,6 @@ void screen_update(H3270 *session, int bstart, int bend) | ||
302 | a = color_from_fa(session,fa); | 302 | a = color_from_fa(session,fa); |
303 | fa_addr = find_field_attribute(session,bstart); // may be -1, that's okay | 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 | for(baddr = bstart; baddr < bend; baddr++) | 305 | for(baddr = bstart; baddr < bend; baddr++) |
310 | { | 306 | { |
311 | if(session->ea_buf[baddr].fa) | 307 | if(session->ea_buf[baddr].fa) |
@@ -351,10 +347,6 @@ void screen_update(H3270 *session, int bstart, int bend) | @@ -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 | if(first >= 0) | 350 | if(first >= 0) |
359 | { | 351 | { |
360 | int len = (last - first)+1; | 352 | int len = (last - first)+1; |
@@ -366,9 +358,6 @@ void screen_update(H3270 *session, int bstart, int bend) | @@ -366,9 +358,6 @@ void screen_update(H3270 *session, int bstart, int bend) | ||
366 | len++; | 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 | session->changed(session,first,len); | 361 | session->changed(session,first,len); |
373 | } | 362 | } |
374 | 363 |