1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Rewrite #include directives in lib-src/FileDialog ...

... Removing one from the public header file
This commit is contained in:
Paul Licameli 2019-03-23 11:22:50 -04:00
parent cb3c8b553c
commit 2176de79fb
4 changed files with 17 additions and 17 deletions

View File

@ -17,9 +17,7 @@ custom controls.
#ifndef _FILEDIALOG_H_
#define _FILEDIALOG_H_
#include <wx/defs.h>
#include <wx/filectrl.h>
#include <wx/filedlg.h>
#include <wx/filedlg.h> // to inherit
#ifndef AUDACITY_DLL_API
#define AUDACITY_DLL_API

View File

@ -14,10 +14,10 @@
#ifndef _MAC_FILEDIALOG_H_
#define _MAC_FILEDIALOG_H_
#include <wx/choice.h>
#include "../FileDialog.h"
class wxChoice;
//-------------------------------------------------------------------------
// wxFileDialog
//-------------------------------------------------------------------------

View File

@ -27,21 +27,22 @@
#include "FileDialog.h"
#ifndef WX_PRECOMP
#include "wx/msgdlg.h"
#include "wx/app.h"
#include "wx/sizer.h"
#include "wx/stattext.h"
#include "wx/choice.h"
#include <wx/msgdlg.h>
#include <wx/app.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/choice.h>
#endif
#include "wx/clipbrd.h"
#include "wx/filename.h"
#include "wx/tokenzr.h"
#include "wx/evtloop.h"
#include <wx/clipbrd.h>
#include <wx/filectrl.h>
#include <wx/filename.h>
#include <wx/tokenzr.h>
#include <wx/evtloop.h>
#include "wx/osx/private.h"
#include "wx/sysopt.h"
#include "wx/modalhook.h"
#include <wx/osx/private.h>
#include <wx/sysopt.h>
#include <wx/modalhook.h>
#include <mach-o/dyld.h>

View File

@ -32,6 +32,7 @@
#include "Export.h"
#include <wx/file.h>
#include <wx/filectrl.h>
#include <wx/filename.h>
#include <wx/progdlg.h>
#include <wx/sizer.h>