This commit is contained in:
parent
a25cf04d7e
commit
e7640ef83b
2 changed files with 19 additions and 1 deletions
18
DMX-2.0/ErreurLectureFichier.cs
Normal file
18
DMX-2.0/ErreurLectureFichier.cs
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -327,7 +327,7 @@ namespace DMX2
|
||||||
|
|
||||||
foreach (Sequenceur s in Conduite.Courante.Sequenceurs) {
|
foreach (Sequenceur s in Conduite.Courante.Sequenceurs) {
|
||||||
VBox newvbox = new VBox();
|
VBox newvbox = new VBox();
|
||||||
newvbox.Add(s.GetUI());
|
newvbox.PackStart(s.GetUI(),false,false,0);
|
||||||
onglets.Add (newvbox);
|
onglets.Add (newvbox);
|
||||||
onglets.ShowAll();
|
onglets.ShowAll();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue