EgtExecutor :
- piccola correzione agli esportatori.
This commit is contained in:
+4
-4
@@ -475,7 +475,7 @@ ExeExportDxf( int nId, const string& sFilePath, int nFlag, int nFilter)
|
||||
PtrOwner<IExportDxf> pExpDxf( MyCreateExportDxf()) ;
|
||||
bOk = bOk && ! IsNull( pExpDxf) ;
|
||||
// eseguo l'esportazione
|
||||
pExpDxf->SetOptions( nFilter, nFlag) ;
|
||||
bOk = bOk && pExpDxf->SetOptions( nFilter, nFlag) ;
|
||||
bOk = bOk && pExpDxf->Export( pGeomDB, nId, sFilePath) ;
|
||||
// se richiesto, salvo il comando Lua equivalente
|
||||
if ( IsCmdLog()) {
|
||||
@@ -501,7 +501,7 @@ ExeExportStl( int nId, const string& sFilePath, int nFilter)
|
||||
PtrOwner<IExportStl> pExpStl( MyCreateExportStl()) ;
|
||||
bOk = bOk && ! IsNull( pExpStl) ;
|
||||
// eseguo l'esportazione
|
||||
pExpStl->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExpStl->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExpStl->Export( pGeomDB, nId, sFilePath) ;
|
||||
// se richiesto, salvo il comando Lua equivalente
|
||||
if ( IsCmdLog()) {
|
||||
@@ -526,7 +526,7 @@ ExeExport3MF( int nId, const string& sFilePath, int nFilter)
|
||||
PtrOwner<IExport3MF> pExp3MF( MyCreateExport3MF()) ;
|
||||
bOk = bOk && ! IsNull( pExp3MF) ;
|
||||
// eseguo l'esportazione
|
||||
pExp3MF->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExp3MF->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExp3MF->Export( pGeomDB, nId, sFilePath) ;
|
||||
// se richiesto, salvo il comando Lua equivalente
|
||||
if ( IsCmdLog()) {
|
||||
@@ -576,7 +576,7 @@ ExeExportSvg( int nId, const string& sFilePath, int nFilter)
|
||||
PtrOwner<IExportSvg> pExpSvg( MyCreateExportSvg()) ;
|
||||
bOk = bOk && ! IsNull( pExpSvg) ;
|
||||
// eseguo l'esportazione
|
||||
pExpSvg->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExpSvg->SetOptions( nFilter) ;
|
||||
bOk = bOk && pExpSvg->Export( pGeomDB, nId, sFilePath) ;
|
||||
// se richiesto, salvo il comando Lua equivalente
|
||||
if ( IsCmdLog()) {
|
||||
|
||||
Reference in New Issue
Block a user