diff options
author | Stew Benedict <stewb@mandriva.org> | 2004-07-28 11:10:13 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2004-07-28 11:10:13 +0000 |
commit | 3c29a1f97b55d63192559580f04087dfb3139517 (patch) | |
tree | 54471bf7ef187f5a1c073468c7de495be4fdc9da /perl-install/standalone/drakbackup | |
parent | a93c6d9af9e7b5ad2bce9f4bb729c753bcfbaf06 (diff) | |
download | drakx-3c29a1f97b55d63192559580f04087dfb3139517.tar drakx-3c29a1f97b55d63192559580f04087dfb3139517.tar.gz drakx-3c29a1f97b55d63192559580f04087dfb3139517.tar.bz2 drakx-3c29a1f97b55d63192559580f04087dfb3139517.tar.xz drakx-3c29a1f97b55d63192559580f04087dfb3139517.zip |
Fix crashes on append_set.
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-x | perl-install/standalone/drakbackup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 67140d644..4e31e2bb1 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1358,7 +1358,7 @@ sub filedialog_generic { my $file_name = $file_dialog->get_filename; if (!member($file_name, @other_files)) { push(@other_files, $file_name); - $list_model->append_set(undef, $file_name); + $list_model->append_set(0, $file_name); } } $file_dialog->destroy; @@ -1494,7 +1494,7 @@ sub advanced_what_other() { $list_others->set_headers_visible(0); foreach (@other_files) { - $list_model->append_set(undef, $_); + $list_model->append_set(0, $_); } $list_others->get_selection->signal_connect(changed => sub { @@ -3340,7 +3340,7 @@ sub catalog_restore { foreach (@contents) { chop; my $s = $_; - $lmodel->append_set(undef, $s); + $lmodel->append_set(0, $s); } } gtkset_mousecursor_normal(); |