X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdocs.cpp;h=179cc89750461dca1a20a89f22bdbf56a1a29dff;hp=096a61b6a0b33828eca4f45d350e0a19a71608cc;hb=7fdb0496c8582134ebd84b91de3e399c8f95dbcd;hpb=ebb615bb35cf344a765aa65414982904e59f961b diff --git a/src/docs.cpp b/src/docs.cpp index 096a61b..179cc89 100644 --- a/src/docs.cpp +++ b/src/docs.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: docs.cpp,v 1.5 2000/12/17 22:30:34 kevin Exp $ +** $Id: docs.cpp,v 1.6 2000/12/18 09:55:22 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 @@ -80,7 +80,11 @@ bool ImageFileDocument::OnOpenDocument(const wxString& filename) SetFilename(filename, true); } Modify(false); - UpdateAllViews(); + UpdateAllViews(); + ImageFileView* ifView = dynamic_cast(GetFirstView()); + if (ifView) + ifView->OnUpdate(ifView, NULL); + return true; }