#include <QtGui/QFileDialog>
#include <QtGui/QMessageBox>
+#include <cstdlib>
#include "hxx2salome.h"
-#include <stdlib.h>
-
// VSR: uncomment for debug mode
// #define __DEBUG__
printf( "command: %s\n", qPrintable( command ) );
#endif
QApplication::setOverrideCursor( Qt::WaitCursor );
- system( command.toLatin1().constData() );
+ std::system( command.toLatin1().constData() );
QApplication::restoreOverrideCursor();
}