diff options
Diffstat (limited to 'exemples/Visage.pm')
-rw-r--r-- | exemples/Visage.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/exemples/Visage.pm b/exemples/Visage.pm index 67c0064..ddef0ef 100644 --- a/exemples/Visage.pm +++ b/exemples/Visage.pm @@ -20,17 +20,17 @@ use strict; use vars qw /@ISA/; use MTools; -use MTools::MGroup; +use MTools::GUI::MGroup; use MTools::GUI::MText; BEGIN { - @ISA = qw /MTools::MGroup/; + @ISA = qw /MTools::GUI::MGroup/; } sub new { my ($class, $parent, $file) = @_; - my $self = new MTools::MGroup ($parent); + my $self = new MTools::GUI::MGroup ($parent); bless $self, $class; $self -> recordProperty ('nom', $file); |