Separation of wxUSE_FILEDLG and wxUSE_DIRDLG in generic implementations.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27861 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-06-17 19:50:20 +00:00
parent d29bf6775a
commit 13de0c8c9b
2 changed files with 18 additions and 4 deletions

View File

@@ -19,6 +19,10 @@
#pragma interface "dirctrlg.h"
#endif
#if wxUSE_DIRDLG || wxUSE_FILEDLG
#include "wx/imaglist.h"
#endif
#if wxUSE_DIRDLG
#include "wx/treectrl.h"
@@ -242,10 +246,14 @@ protected:
#define wxID_TREECTRL 7000
#define wxID_FILTERLISTCTRL 7001
#endif // wxUSE_DIRDLG
//-------------------------------------------------------------------------
// wxFileIconsTable - use wxTheFileIconsTable which is created as necessary
//-------------------------------------------------------------------------
#if wxUSE_DIRDLG || wxUSE_FILEDLG
class WXDLLEXPORT wxFileIconsTable
{
public:
@@ -278,7 +286,7 @@ protected:
// The global fileicons table
WXDLLEXPORT_DATA(extern wxFileIconsTable *) wxTheFileIconsTable;
#endif // wxUSE_DIRDLG
#endif // wxUSE_DIRDLG || wxUSE_FILEDLG
#endif
// _WX_DIRCTRLG_H_