~ubuntu-branches/ubuntu/raring/ginkgocadx/raring-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/main/gui/hl7controlwindow/ventanacontrolhl7.cpp

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2012-05-19 11:37:14 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519113714-13jwx5svm7d4fnsq
Tags: 2.12.0.4889-1
* New upstream version
* debian/control: Standards-Version: 3.9.3 (no changes needed)
* debhelper 9 (control+compat)

Show diffs side-by-side

added added

removed removed

Lines of Context:
403
403
                                wxString destino = m_treeListCtrlMensajes->GetItemText(id,COL_DESTINO);
404
404
                                wxString estado = m_treeListCtrlMensajes->GetItemText(id,COL_ESTADO);
405
405
                                wxString mensaje = m_treeListCtrlMensajes->GetItemText(id,COL_MENSAJE);
406
 
                                DialogoMostrarMensaje mostrar(this,fecha,destino,estado,mensaje, false);
407
 
                                mostrar.ShowModal();
 
406
                                DialogoMostrarMensaje* mostrar = new DialogoMostrarMensaje(this,fecha,destino,estado,mensaje, false);
 
407
                                mostrar->Show();
408
408
                        }
409
409
                }
410
410