From 8ce2829ff2e939b021bdae6cdc3d825bc43938f2 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 29 Jan 2003 07:11:17 +0000 Subject: [PATCH] r3876: Auto commit for Debian build --- src/views.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views.cpp b/src/views.cpp index 66433ee..c2d5e06 100644 --- a/src/views.cpp +++ b/src/views.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: views.cpp,v 1.165 2003/01/29 04:34:06 kevin Exp $ +** $Id: views.cpp,v 1.166 2003/01/29 07:11:17 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -1060,8 +1060,10 @@ ImageFileView::setInitialClientSize () void ImageFileView::OnDraw (wxDC* dc) { - if (m_pBitmap && m_pBitmap->Ok()) + if (m_pBitmap && m_pBitmap->Ok()) { + *theApp->getLog() << "Drawing bitmap"; dc->DrawBitmap(*m_pBitmap, 0, 0, false); + } int xCursor, yCursor; if (m_pCanvas->GetCurrentCursor (xCursor, yCursor)) @@ -1115,6 +1117,7 @@ ImageFileView::OnUpdate (wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint) ) delete m_pBitmap; m_pBitmap = NULL; } + *theApp->getLog() << "Making new bitmap bitmap"; m_pBitmap = new wxBitmap (image); delete imageData; m_pCanvas->SetScrollbars(20, 20, nx/20, ny/20); -- 2.34.1