From: Steve Brokenshire Date: Tue, 4 Aug 2015 21:28:53 +0000 (+0100) Subject: Using the correct control of lboPictures instead of lboLogos when setting the propert... X-Git-Tag: release-0.05~88 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=3ea7a6d095ea0bd429bf11749017511dba809d4d Using the correct control of lboPictures instead of lboLogos when setting the properties of a picture. --- diff --git a/source/contacteditor/frmContactEditor-Load.cpp b/source/contacteditor/frmContactEditor-Load.cpp index 9333df7..a13a7de 100644 --- a/source/contacteditor/frmContactEditor-Load.cpp +++ b/source/contacteditor/frmContactEditor-Load.cpp @@ -5735,12 +5735,12 @@ bool frmContactEditor::LoadContact(wxString Filename){ } else if (intType == 1){ PicturesListType.insert(std::make_pair(intValueSeek, wxT("home"))); - lboLogos->SetItem(ListCtrlIndex, 1, _("Home")); + lboPictures->SetItem(ListCtrlIndex, 1, _("Home")); } else if (intType == 2){ PicturesListType.insert(std::make_pair(intValueSeek, wxT("work"))); - lboLogos->SetItem(ListCtrlIndex, 1, _("Work")); + lboPictures->SetItem(ListCtrlIndex, 1, _("Work")); }