From: vsr Date: Thu, 14 Oct 2010 05:48:40 +0000 (+0000) Subject: Compatibility with Debian Lenny X-Git-Tag: V5_1_3_patch05~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=57e3d6d18694b6724ba12579ed24c4d3fecef3d5;p=tools%2Fhxx2salome.git Compatibility with Debian Lenny --- diff --git a/src/hxx2salome.cpp b/src/hxx2salome.cpp index 1640666..50640ee 100644 --- a/src/hxx2salome.cpp +++ b/src/hxx2salome.cpp @@ -8,6 +8,8 @@ #include "hxx2salome.h" +#include + // VSR: uncomment for debug mode // #define __DEBUG__ @@ -244,6 +246,6 @@ void HXX2Salome::on_GenerateButton_clicked() printf( "command: %s\n", qPrintable( command ) ); #endif QApplication::setOverrideCursor( Qt::WaitCursor ); - std::system( command.toLatin1().constData() ); + system( command.toLatin1().constData() ); QApplication::restoreOverrideCursor(); }