X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2049ba38adafa0ec146880de29f26e32dd69a125..22423eac8bcfcd3d357465e2cbeba08f1c431181:/include/wx/imaglist.h diff --git a/include/wx/imaglist.h b/include/wx/imaglist.h index db6b8bdcfd..1b2c2c4cc2 100644 --- a/include/wx/imaglist.h +++ b/include/wx/imaglist.h @@ -1,13 +1,24 @@ -#ifndef __IMAGLISTH_BASE__ -#define __IMAGLISTH_BASE__ +///////////////////////////////////////////////////////////////////////////// +// Name: wx/imaglist.h +// Purpose: wxImageList base header +// Author: Julian Smart +// Modified by: +// Created: +// Copyright: (c) Julian Smart +// RCS-ID: $Id$ +// Licence: wxWindows licence +///////////////////////////////////////////////////////////////////////////// -#if defined(__WXMSW__) -#include "wx/msw/imaglist.h" -#elif defined(__WXMOTIF__) -#include "wx/generic/imaglist.h" -#elif defined(__WXGTK__) -#include "wx/generic/imaglist.h" +#ifndef _WX_IMAGLIST_H_BASE_ +#define _WX_IMAGLIST_H_BASE_ + +#if defined(__WIN32__) && !defined(__WXUNIVERSAL__) + #include "wx/msw/imaglist.h" +#elif defined(__WXMAC_CARBON__) + #include "wx/mac/imaglist.h" +#else + #include "wx/generic/imaglist.h" #endif #endif - // __IMAGLISTH_BASE__ + // _WX_IMAGLIST_H_BASE_