Exemplo n.º 1
0
 public void RefreshGlueProjectThreadProc(object showError)
 {
     try
     {
         OutInterface.RefreshGlueProject();
     }
     catch (Exception e)
     {
         if ((bool)showError)
         {
             OnConnectionFail(e);
         }
     }
 }
 public void RefreshGlueProjectThreadProc(object showError)
 {
     try
     {
         if (OutInterface == null)
         {
             PluginManager.ReceiveOutput("Error trying to send refresh glue project to GlueView - OutInterface is null");
         }
         else
         {
             OutInterface.RefreshGlueProject();
         }
     }
     catch (Exception e)
     {
         if ((bool)showError)
         {
             OnConnectionFail(e);
         }
     }
 }