debugging printfs
This commit is contained in:
parent
951e759fd1
commit
708a394c64
|
@ -30,6 +30,7 @@
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "wxstruct.h"
|
#include "wxstruct.h"
|
||||||
|
#include "macros.h"
|
||||||
|
|
||||||
|
|
||||||
// Path list for online help
|
// Path list for online help
|
||||||
|
@ -306,6 +307,17 @@ wxString EDA_FileSelector( const wxString& Title, /* Dialog ti
|
||||||
|
|
||||||
wxSetWorkingDirectory( defaultpath );
|
wxSetWorkingDirectory( defaultpath );
|
||||||
|
|
||||||
|
#if 0 && defined(DEBUG)
|
||||||
|
printf("defaultpath=\"%s\" defaultname=\"%s\" Ext=\"%s\" Mask=\"%s\" flag=%d keep_working_directory=%d\n",
|
||||||
|
CONV_TO_UTF8(defaultpath),
|
||||||
|
CONV_TO_UTF8(defaultname),
|
||||||
|
CONV_TO_UTF8(Ext),
|
||||||
|
CONV_TO_UTF8(Mask),
|
||||||
|
flag,
|
||||||
|
keep_working_directory
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
fullfilename = wxFileSelector( wxString( Title ),
|
fullfilename = wxFileSelector( wxString( Title ),
|
||||||
defaultpath,
|
defaultpath,
|
||||||
defaultname,
|
defaultname,
|
||||||
|
|
Loading…
Reference in New Issue