Subject: | wrong argument to Win32::Shortcut::Set |
Line 617 of Win32.pm says
$args->{-hotkey} = '' unless exists $args->{-hotkey};
but the hotkey argument to the Win32::Shortcut::Set function requires an
integer. Please change to
$args->{-hotkey} = 0 unless exists $args->{-hotkey};