From 57e3d6d18694b6724ba12579ed24c4d3fecef3d5 Mon Sep 17 00:00:00 2001 From: vsr Date: Thu, 14 Oct 2010 05:48:40 +0000 Subject: [PATCH] Compatibility with Debian Lenny --- src/hxx2salome.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); } -- 2.39.2