PFD debug for issue #2670
This commit is contained in:
parent
0da42f18a6
commit
1e7bbf2045
5
extern/pfd-fixed/portable-file-dialogs.h
vendored
5
extern/pfd-fixed/portable-file-dialogs.h
vendored
|
@ -652,6 +652,11 @@ inline void internal::executor::start(int exit_code)
|
||||||
#else
|
#else
|
||||||
inline void internal::executor::start_process(std::vector<std::string> const &command)
|
inline void internal::executor::start_process(std::vector<std::string> const &command)
|
||||||
{
|
{
|
||||||
|
printf("---- WILL EXECUTE:\n");
|
||||||
|
for (std::string& i: command) {
|
||||||
|
printf("- %s\n",i.c_str());
|
||||||
|
}
|
||||||
|
printf("END\n");
|
||||||
stop();
|
stop();
|
||||||
m_stdout.clear();
|
m_stdout.clear();
|
||||||
m_exit_code = -1;
|
m_exit_code = -1;
|
||||||
|
|
Loading…
Reference in a new issue