Fixed a file information problem
This commit is contained in:
parent
aba27ac582
commit
d17713986e
|
@ -5582,9 +5582,11 @@ void MyFrame::messagePane ( const wxString& s, int iconType, bool forcePane )
|
||||||
htmlBuffer += htmlString;
|
htmlBuffer += htmlString;
|
||||||
htmlBuffer += _T ( "</td></tr></table></body></html>" );
|
htmlBuffer += _T ( "</td></tr></table></body></html>" );
|
||||||
|
|
||||||
|
wxString file;
|
||||||
XmlDoc *doc = getActiveDocument();
|
XmlDoc *doc = getActiveDocument();
|
||||||
if ( doc )
|
if ( doc )
|
||||||
htmlReport->setLastFile ( doc->getFullFileName() );
|
file = doc->getFullFileName();
|
||||||
|
htmlReport->setLastFile ( file );
|
||||||
htmlReport->SetPage ( htmlBuffer );
|
htmlReport->SetPage ( htmlBuffer );
|
||||||
|
|
||||||
manager.Update();
|
manager.Update();
|
||||||
|
|
Loading…
Reference in New Issue