This commit is contained in:
tzim 2013-10-02 16:52:47 +00:00
parent a25cf04d7e
commit e7640ef83b
2 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,18 @@
using System;
namespace DMX2
{
public class ErreurLectureFichier:Exception
{
string _desc;
public ErreurLectureFichier (string desc)
{
_desc = desc;
}
public override string ToString ()
{
return string.Format ("[ErreurLectureFichier] {0}", _desc);
}
}
}

View file

@ -327,7 +327,7 @@ namespace DMX2
foreach (Sequenceur s in Conduite.Courante.Sequenceurs) {
VBox newvbox = new VBox();
newvbox.Add(s.GetUI());
newvbox.PackStart(s.GetUI(),false,false,0);
onglets.Add (newvbox);
onglets.ShowAll();
}