[1231183] 'cleanup: mismatched indentation' and other cleanings.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
92218ce600
commit
bfd84575a2
@ -661,10 +661,12 @@ void GridFrame::DeleteSelectedRows( wxCommandEvent& WXUNUSED(ev) )
|
||||
{
|
||||
grid->BeginBatch();
|
||||
for ( int n = 0; n < grid->GetNumberRows(); )
|
||||
{
|
||||
if ( grid->IsInSelection( n , 0 ) )
|
||||
grid->DeleteRows( n, 1 );
|
||||
else
|
||||
n++;
|
||||
}
|
||||
grid->EndBatch();
|
||||
}
|
||||
}
|
||||
@ -676,10 +678,12 @@ void GridFrame::DeleteSelectedCols( wxCommandEvent& WXUNUSED(ev) )
|
||||
{
|
||||
grid->BeginBatch();
|
||||
for ( int n = 0; n < grid->GetNumberCols(); )
|
||||
{
|
||||
if ( grid->IsInSelection( 0 , n ) )
|
||||
grid->DeleteCols( n, 1 );
|
||||
else
|
||||
n++;
|
||||
}
|
||||
grid->EndBatch();
|
||||
}
|
||||
}
|
||||
@ -888,7 +892,7 @@ void GridFrame::OnCellValueChanged( wxGridEvent& ev )
|
||||
|
||||
void GridFrame::OnCellBeginDrag( wxGridEvent& ev )
|
||||
{
|
||||
logBuf = _T("");
|
||||
logBuf = wxEmptyString;
|
||||
logBuf << _T("Got request to drag cell at")
|
||||
<< _T(" row ") << ev.GetRow()
|
||||
<< _T(" col ") << ev.GetCol();
|
||||
|
@ -803,6 +803,7 @@ void MyFrame::OnPageChange(wxNotebookEvent& WXUNUSED(event))
|
||||
void MyTimer::Notify()
|
||||
{
|
||||
if (!m_frame->m_notebook->GetCurrentPage()) return;
|
||||
|
||||
wxMediaCtrl* m_mediactrl = ((MyNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_mediactrl;
|
||||
wxSlider* m_slider = ((MyNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_slider;
|
||||
if (!m_mediactrl) return;
|
||||
|
Loading…
Reference in New Issue
Block a user