diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-10 19:00:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-07-10 19:00:20 +0000 |
commit | 754d6bd9b68fdd926f2148e4e807df09d2994de1 (patch) | |
tree | 86900a85cdc7f6f81cfb8f1730d918f0fdce85e7 /perl-install/standalone/logdrake | |
parent | cb2b3004dc2d270053a542714a97a3716cc8b4a9 (diff) | |
download | drakx-backup-do-not-use-754d6bd9b68fdd926f2148e4e807df09d2994de1.tar drakx-backup-do-not-use-754d6bd9b68fdd926f2148e4e807df09d2994de1.tar.gz drakx-backup-do-not-use-754d6bd9b68fdd926f2148e4e807df09d2994de1.tar.bz2 drakx-backup-do-not-use-754d6bd9b68fdd926f2148e4e807df09d2994de1.tar.xz drakx-backup-do-not-use-754d6bd9b68fdd926f2148e4e807df09d2994de1.zip |
fix warnings due to new gtk2-perl binding following the same naming as C
Diffstat (limited to 'perl-install/standalone/logdrake')
-rwxr-xr-x | perl-install/standalone/logdrake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/standalone/logdrake b/perl-install/standalone/logdrake index 48563b70d..601fb3caf 100755 --- a/perl-install/standalone/logdrake +++ b/perl-install/standalone/logdrake @@ -64,16 +64,16 @@ my $cal_butt = gtksignal_connect(new Gtk2::CheckButton(N("Show only for the sele # the menus are not shown # but they provides shiny shortcut like C-q my @menu_items = ( - { path => N("/_File"), type => '<Branch>' }, + { path => N("/_File"), item_type => '<Branch>' }, { path => N("/File/_New"), accelerator => N("<control>N") }, { path => N("/File/_Open"), accelerator => N("<control>O") }, { path => N("/File/_Save"), accelerator => N("<control>S"), callback => \&save }, { path => N("/File/Save _As") }, - { path => N("/File/-"),type => '<Separator>' }, + { path => N("/File/-"), item_type => '<Separator>' }, { path => N("/File/_Quit"), accelerator => N("<control>Q"), callback => \&quit }, - { path => N("/_Options"), type => '<Branch>' }, + { path => N("/_Options"), item_type => '<Branch>' }, { path => N("/Options/Test") }, - { path => N("/_Help"),type => '<LastBranch>' }, + { path => N("/_Help"), item_type => '<LastBranch>' }, { path => N("/Help/_About...") } ); my $menubar = create_factory_menu($my_win->{rwindow}, @menu_items) unless $::isEmbedded; |