diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-14 19:17:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-14 19:17:14 +0000 |
commit | b91fec50547df583f1ca29cd4b8a870fdee1c84d (patch) | |
tree | 8b6d468e54ef336c773d21b7824a3da3ab0b6455 | |
parent | 017a6125aa5023a54b3c750ba223ad0a769804d5 (diff) | |
download | drakx-backup-do-not-use-b91fec50547df583f1ca29cd4b8a870fdee1c84d.tar drakx-backup-do-not-use-b91fec50547df583f1ca29cd4b8a870fdee1c84d.tar.gz drakx-backup-do-not-use-b91fec50547df583f1ca29cd4b8a870fdee1c84d.tar.bz2 drakx-backup-do-not-use-b91fec50547df583f1ca29cd4b8a870fdee1c84d.tar.xz drakx-backup-do-not-use-b91fec50547df583f1ca29cd4b8a870fdee1c84d.zip |
fix warning on menu building
-rwxr-xr-x | perl-install/standalone/drakfloppy | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/perl-install/standalone/drakfloppy b/perl-install/standalone/drakfloppy index e68241cc3..637fd196b 100755 --- a/perl-install/standalone/drakfloppy +++ b/perl-install/standalone/drakfloppy @@ -58,10 +58,8 @@ unless ($::isEmbedded) { ### menus definition # the menus are not shown but they provides shiny shortcut like C-q create_factory_menu($window->{rwindow}, ( - { - path => N("/_File"), type => '<Branch>' }, - { - path => N("/File/_Quit"), accelerator => N("<control>Q"), callback => sub { ugtk2->exit(0) } }, + { path => N("/_File"), item_type => '<Branch>' }, + { path => N("/File/_Quit"), accelerator => N("<control>Q"), callback => sub { ugtk2->exit(0) } }, ) ); } |