#include "common/preferences.h"
#include "common/dirs.h"
#include "bitmaps.h"
+#include "bitmaps/preferences.h"
#include "import/import.h"
#include "export/export.h"
#include <wx/msgdlg.h>
#include <wx/fileconf.h>
-
frmPreferences::frmPreferences( wxWindow* parent )
:
frmPreferencesADT( parent )
wxMemoryInputStream astream(icons_accinet_png, sizeof(icons_accinet_png));
wxMemoryInputStream bstream(icons_acclocal_png, sizeof(icons_acclocal_png));
wxMemoryInputStream cstream(icons_accunsupported_png, sizeof(icons_accunsupported_png));
+ wxMemoryInputStream windowposstream(icons_windowpos_png, sizeof(icons_windowpos_png));
+ wxMemoryInputStream hideaddressbooksstream(icons_hideaddressbooks_png, sizeof(icons_hideaddressbooks_png));
+
+ wxImage icons_windowpos_png(windowposstream, wxBITMAP_TYPE_PNG);
+ wxBitmap WindowPosition(icons_windowpos_png, -1);
+
+ wxImage icons_hideaddressbooks_png(hideaddressbooksstream, wxBITMAP_TYPE_PNG);
+ wxBitmap HideAddressBooks(icons_hideaddressbooks_png, -1);
+
+ bmpWindowPosition->SetBitmap(WindowPosition);
+ bmpLocalAddressBooks->SetBitmap(HideAddressBooks);
wxImage icons_accinet_png(astream, wxBITMAP_TYPE_PNG);
wxBitmap AccInet(icons_accinet_png, -1);