summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-07-06 07:38:48 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-07-06 07:38:48 +0000
commitbe479ef5a9dddb20bd40111644fa06ae7db161ca (patch)
treec902c6848c36070b4df06b36673eb4a40d8a44ed /perl-install/Xconfig
parentadcfb707663292922d1d5f46069ac31996b9aef8 (diff)
downloaddrakx-backup-do-not-use-be479ef5a9dddb20bd40111644fa06ae7db161ca.tar
drakx-backup-do-not-use-be479ef5a9dddb20bd40111644fa06ae7db161ca.tar.gz
drakx-backup-do-not-use-be479ef5a9dddb20bd40111644fa06ae7db161ca.tar.bz2
drakx-backup-do-not-use-be479ef5a9dddb20bd40111644fa06ae7db161ca.tar.xz
drakx-backup-do-not-use-be479ef5a9dddb20bd40111644fa06ae7db161ca.zip
rename function $set_chosen_x_res to $set_chosen_resolution (since it sets both)
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r--perl-install/Xconfig/resolution_and_depth.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm
index 51017a58d..3ddb931cc 100644
--- a/perl-install/Xconfig/resolution_and_depth.pm
+++ b/perl-install/Xconfig/resolution_and_depth.pm
@@ -249,7 +249,7 @@ sub choose_gtk {
};
my $pixmap_mo = Gtk2::Image->new;
- my $set_chosen_x_res = sub {
+ my $set_chosen_resolution = sub {
$chosen_x_res = $_[0];
if ($_[1]) {
$chosen_y_res = $_[1];
@@ -262,7 +262,7 @@ sub choose_gtk {
$pixmap_mo->set_from_file($image);
$x_res_combo->entry->set_text($chosen_x_res . "x" . $chosen_y_res);
};
- $set_chosen_x_res->($chosen_x_res, $chosen_y_res);
+ $set_chosen_resolution->($chosen_x_res, $chosen_y_res);
my $help_sub = $in->interactive_help_sub_display_id('configureX_resolution');
gtkadd($W->{window},
@@ -291,18 +291,18 @@ sub choose_gtk {
$set_chosen_Depth_image->();
if (!member($chosen_x_res, @{$depth2x_res{$chosen_Depth}})) {
- $set_chosen_x_res->(max(@{$depth2x_res{$chosen_Depth}}));
+ $set_chosen_resolution->(max(@{$depth2x_res{$chosen_Depth}}));
}
});
$x_res_combo->set_popdown_strings(uniq map { "$_->{X}x$_->{Y}" } sort { $a->{X} <=> $b->{X} } @resolutions);
$x_res_combo->entry->signal_connect(changed => sub {
- $set_chosen_x_res->($1, $2) if $x_res_combo->entry->get_text =~ /(\d+)x(\d+)/;
+ $set_chosen_resolution->($1, $2) if $x_res_combo->entry->get_text =~ /(\d+)x(\d+)/;
if (!member($chosen_Depth, @{$x_res2depth{$chosen_x_res}})) {
$set_chosen_Depth->(max(@{$x_res2depth{$chosen_x_res}}));
}
});
- $set_chosen_x_res->($chosen_x_res, $chosen_y_res);
+ $set_chosen_resolution->($chosen_x_res, $chosen_y_res);
$set_chosen_Depth->($chosen_Depth);
$W->{ok}->grab_focus;