diff options
author | jsorg71 <jsorg71> | 2005-03-06 03:44:27 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-03-06 03:44:27 +0000 |
commit | d5dea39bafc3440b1726cf90a8295ecb393e059c (patch) | |
tree | 58a3d4f5a3666980433bbe5648cf3229731d8b0c /xrdp/xrdp_bitmap.c | |
parent | 8e807eefd25dd678d525fd0b8248e397fae6ffa9 (diff) | |
download | xrdp-proprietary-d5dea39bafc3440b1726cf90a8295ecb393e059c.tar.gz xrdp-proprietary-d5dea39bafc3440b1726cf90a8295ecb393e059c.zip |
added connection log
Diffstat (limited to 'xrdp/xrdp_bitmap.c')
-rw-r--r-- | xrdp/xrdp_bitmap.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/xrdp/xrdp_bitmap.c b/xrdp/xrdp_bitmap.c index 9080758b..27b0e356 100644 --- a/xrdp/xrdp_bitmap.c +++ b/xrdp/xrdp_bitmap.c @@ -173,6 +173,10 @@ void xrdp_bitmap_delete(struct xrdp_bitmap* self) { self->wm->login_window = 0; } + if (self->wm->log_wnd == self) + { + self->wm->log_wnd = 0; + } } if (self->child_list != 0) { @@ -825,14 +829,20 @@ int xrdp_bitmap_invalidate(struct xrdp_bitmap* self, struct xrdp_rect* rect) char* p; if (self == 0) /* if no bitmap */ + { return 0; + } if (self->type == WND_TYPE_BITMAP) /* if 0, bitmap, leave */ + { return 0; + } painter = xrdp_painter_create(self->wm); xrdp_painter_font_needed(painter); painter->rop = 0xcc; /* copy */ if (rect == 0) + { painter->use_clip = 0; + } else { if (ISRECTEMPTY(*rect)) @@ -899,8 +909,11 @@ int xrdp_bitmap_invalidate(struct xrdp_bitmap* self, struct xrdp_rect* rect) y = rect->top; w = rect->right - rect->left; h = rect->bottom - rect->top; - self->wm->mod->mod_event(self->wm->mod, WM_INVALIDATE, /* 200 */ - MAKELONG(x, y), MAKELONG(w, h)); + if (check_bounds(self->wm->screen, &x, &y, &w, &h)) + { + self->wm->mod->mod_event(self->wm->mod, WM_INVALIDATE, + MAKELONG(x, y), MAKELONG(w, h)); + } } } } |