diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-10 10:43:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-10 10:43:56 +0000 |
commit | e9891ea0864012338c5d6d19daa0f193e0c978c9 (patch) | |
tree | c7335ff901761f3af5d3bbf7d66a84e824ede71e | |
parent | 6119e3d66eca2ef32dbf86d340ff3e3eff1ad263 (diff) | |
download | control-center-e9891ea0864012338c5d6d19daa0f193e0c978c9.tar control-center-e9891ea0864012338c5d6d19daa0f193e0c978c9.tar.gz control-center-e9891ea0864012338c5d6d19daa0f193e0c978c9.tar.bz2 control-center-e9891ea0864012338c5d6d19daa0f193e0c978c9.tar.xz control-center-e9891ea0864012338c5d6d19daa0f193e0c978c9.zip |
remove debugging stuff
-rwxr-xr-x | control-center | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/control-center b/control-center index 2034dd3a..b286b5ba 100755 --- a/control-center +++ b/control-center @@ -560,28 +560,6 @@ foreach (@tree) { } - - -sub create_packtable { - print "PACKING...\n"; - my ($options, @l) = @_; - my $w = Gtk2::Table->new(0, 0, $options->{homogeneous} || 0); - each_index { - my ($i, $l) = ($_[0], $_); - each_index { - my ($j) = @_; - if ($_) { - $w->attach($_, $j, $j + 1, $i, $i + 1, ['expand', 'fill', 'shrink'], [], 0, 0); - $_->show; - } - } @$l; - } @l; - $w->set_col_spacings($options->{col_spacings} || 0); - $w->set_row_spacings($options->{row_spacings} || 0); - $w -} - - $notebook_global->set_size_request(-1, $index * 60); |