~ubuntu-branches/ubuntu/quantal/ginkgocadx/quantal

« back to all changes in this revision

Viewing changes to src/cadxcore/commands/comandocarga.cpp

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2011-11-09 12:29:00 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111109122900-idkd9vvhr31whz8z
Tags: 2.6.0.0~rc-1
* New upstream version
  Closes: #647413
* Rebuild against recent insighttoolkit
  Closes: #648167

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
*  
3
 
*  $Id: comandocarga.cpp 4158 2011-09-19 13:25:20Z tovar $
 
3
*  $Id: comandocarga.cpp 4327 2011-10-25 06:55:31Z carlos $
4
4
*  Ginkgo CADx Project
5
5
*
6
6
*  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
95
95
                }
96
96
                catch( GNC::GCS::VistaException& ex )
97
97
                {
98
 
                        Error = _Std("Exception loading:") + ex.GetCause();
 
98
                        Error = _Std("Exception loading:") + " " + ex.GetCause();
99
99
                }
100
100
                catch (GNC::GCS::ControladorCargaException& ex)
101
101
                {
102
 
                        Error = _Std("Exception loading:") + ex.GetCause();
 
102
                        Error = _Std("Exception loading:") + " " + ex.GetCause();
103
103
                }
104
104
                catch (...)
105
105
                {
109
109
 
110
110
        CargaParams->IVista->UnLock(GLOC());
111
111
 
112
 
        GTRACE("Saliendo comando carga ");
 
112
        //GTRACE("Saliendo comando carga ");
113
113
}
114
114
 
115
115
void GADAPI::ComandoCarga::Update()