Remove unused/redundant assignments

This commit is contained in:
Paul Cornett
2019-04-04 10:28:42 -07:00
parent ff01f4a5a8
commit 5629f71c32
6 changed files with 2 additions and 26 deletions

View File

@@ -1917,7 +1917,7 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
}
else
{
sizer_item = cont->Add(horz_pane_sizer, pane_proportion, wxEXPAND);
cont->Add(horz_pane_sizer, pane_proportion, wxEXPAND);
}
}

View File

@@ -527,7 +527,7 @@ void wxAuiGenericTabArt::DrawTab(wxDC& dc,
}
int text_offset = tab_x + 8;
int text_offset;
int close_button_width = 0;
if (close_button_state != wxAUI_BUTTON_STATE_HIDDEN)
{

View File

@@ -832,9 +832,6 @@ void wxGCDCImpl::DoDrawSpline(const wxPointList *points)
wxCoord cy4 = (y1 + y2) / 2;
path.AddQuadCurveToPoint(x1 , y1 ,cx4 , cy4 );
cx1 = cx4;
cy1 = cy4;
}
path.AddLineToPoint( x2 , y2 );

View File

@@ -796,24 +796,6 @@ bool wxWindowsPrintDialog::ConvertToNative( wxPrintDialogData &data )
memset( pd, 0, sizeof(PRINTDLG) );
m_printDlg = (void*) pd;
pd->lStructSize = sizeof(PRINTDLG);
pd->hwndOwner = NULL;
pd->hDevMode = NULL; // Will be created by PrintDlg
pd->hDevNames = NULL; // Ditto
pd->Flags = PD_RETURNDEFAULT;
pd->nCopies = 1;
// Pass the devmode data to the PRINTDLG structure, since it'll
// be needed when PrintDlg is called.
if (pd->hDevMode)
GlobalFree(pd->hDevMode);
// Pass the devnames data to the PRINTDLG structure, since it'll
// be needed when PrintDlg is called.
if (pd->hDevNames)
GlobalFree(pd->hDevNames);
pd->hDevMode = static_cast<HGLOBAL>(native_data->GetDevMode());
native_data->SetDevMode(NULL);

View File

@@ -793,8 +793,6 @@ void wxNativeFontInfo::InitFromFontDescriptor(CTFontDescriptorRef desc)
wxCFDictionaryRef traits((CFDictionaryRef)CTFontDescriptorCopyAttribute(desc, kCTFontTraitsAttribute));
traits.GetValue(kCTFontSymbolicTrait).GetValue((int32_t*)&symbolicTraits, 0);
m_family = wxFONTFAMILY_DEFAULT;
if (symbolicTraits & kCTFontTraitMonoSpace)
m_family = wxFONTFAMILY_TELETYPE;
else

View File

@@ -1423,7 +1423,6 @@ bool wxWindowQt::QtHandleMouseEvent ( QWidget *handler, QMouseEvent *event )
e.SetEventType( wxEVT_LEAVE_WINDOW );
ProcessWindowEvent( e );
m_mouseInside = mouseInside;
}
}