X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fsearch%2FfrmSearch.cpp;h=8d8530c5312f153a94de7f032c01a745d2d71b5c;hb=ee9b71949005734012f18251774807c38b989ae2;hp=3ef2a0d2ba44506b512591e067d445593f8eecc0;hpb=6e4396404da8037baa863893cee45be3d9978b1a;p=xestiaab%2F.git diff --git a/source/search/frmSearch.cpp b/source/search/frmSearch.cpp index 3ef2a0d..8d8530c 100644 --- a/source/search/frmSearch.cpp +++ b/source/search/frmSearch.cpp @@ -1,6 +1,6 @@ // frmSearch.cpp - Search form. // -// (c) 2012-2015 Xestia Software Development. +// (c) 2012-2017 Xestia Software Development. // // This file is part of Xestia Address Book. // @@ -17,14 +17,7 @@ // with Xestia Address Book. If not, see #include "frmSearch.h" -#include "../frmMain.h" -#include "../frmContact.h" -#include "frmSearchAccounts.h" -#include "../common/preferences.h" -#include "../common/dirs.h" -#include "../vcard/vcard.h" -#include #define SEARCHSETTINGS_MAX 15 @@ -59,6 +52,15 @@ frmSearch::frmSearch( wxWindow* parent ) frmSearchADT( parent ) { + // Setup the application icon. + + wxMemoryInputStream istream(bigimgs_searchicon_png, sizeof(bigimgs_searchicon_png)); + wxImage bigimgs_searchiconi(istream, wxBITMAP_TYPE_PNG); + wxBitmap searchiconbmp(bigimgs_searchiconi, -1); + wxIcon searchicon; + searchicon.CopyFromBitmap(searchiconbmp); + this->SetIcon(searchicon); + // Setup the search window. XABSearchPanel *InitPanel = new XABSearchPanel( tabSearch );