X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..e80edb8515cc574f8ad264f47bd9cfe9501cfc97:/include/wx/imaglist.h diff --git a/include/wx/imaglist.h b/include/wx/imaglist.h index 12774bdff4..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(__WINDOWS__) -#include "wx/msw/imaglist.h" -#elif defined(__MOTIF__) -#include "wx/generic/imaglist.h" -#elif defined(__GTK__) -#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_