# NOTE: Derived from ../blib/lib/Tk/Listbox.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Listbox;
#line 304 "../blib/lib/Tk/Listbox.pm (autosplit into ../blib/lib/auto/Tk/Listbox/CLEAR.al)"
# CLEAR
# -----
# Empty the Listbox of contents if tied to an array
sub CLEAR {
my $class = shift;
${$class->{OBJECT}}->delete(0, 'end');
}
# end of Tk::Listbox::CLEAR
1;