[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]
[XaraXtreme-commits] Commit Complete
Commit by : gerry
Repository : xara
Revision : 1551
Date : Wed Jul 26 13:50:21 BST 2006
Changed paths:
M /Trunk/XaraLX/wxOil/xpoilflt.cpp
Synchronous filter commands now use wxEXEC_NODISABLE to avoid some unecessary redraws
Diff:
Index: Trunk/XaraLX/wxOil/xpoilflt.cpp
===================================================================
--- Trunk/XaraLX/wxOil/xpoilflt.cpp (revision 1550)
+++ Trunk/XaraLX/wxOil/xpoilflt.cpp (revision 1551)
@@ -359,7 +359,7 @@
wxArrayString saOutput;
wxArrayString saErrors;
- INT32 code = wxExecute(sCommand, saOutput, saErrors);
+ INT32 code = wxExecute(sCommand, saOutput, saErrors, wxEXEC_NODISABLE);
TRACEUSER("Gerry", _T("wxExecute returned %d"), code);
if (code == 0)
{
@@ -552,7 +552,7 @@
wxArrayString saOutput;
wxArrayString saErrors;
- INT32 code = wxExecute(sCommand, saOutput, saErrors);
+ INT32 code = wxExecute(sCommand, saOutput, saErrors, wxEXEC_NODISABLE);
#ifdef _DEBUG
for (UINT32 i = 0; i < saErrors.GetCount(); i++)
Xara