Update of /cvsroot/anyedit/AnyEditv2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18199
Modified Files:
MainFrm.cpp
Log Message:
Bugfix: OutputBar now becomes visible on a Find In Files.
Index: MainFrm.cpp
===================================================================
RCS file: /cvsroot/anyedit/AnyEditv2/MainFrm.cpp,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** MainFrm.cpp 4 Feb 2005 13:58:26 -0000 1.76
--- MainFrm.cpp 24 Mar 2005 09:12:55 -0000 1.77
***************
*** 951,954 ****
--- 951,957 ----
m_wndOutputBar.SetActiveTab( 2 );
+ // Make sure the window is visible.
+ if( !( m_wndOutputBar.GetStyle() & WS_VISIBLE ) ) ShowControlBar(&m_wndOutputBar, TRUE, FALSE );
+
m_wndOutputBar.GetActiveTab()->ClearOutputParser();
if (pMgr->IsCountOnly())
|