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