Thread Wx- Compile
(20 answers)
Opened by Hubbi at 2010-05-27 13:23
Zwar ist es mir ein Rätsel weshalb, aber der Exporter scheint Probleme zu machen. Mit einer eigenen import() Methode hat es bei mir in einem Test ohne Wx usw. hervorragend funktioniert. Vielleicht läuft es so auch bei dir:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package module::userv; use strict; use Wx qw[wxICON_ERROR wxICON_EXCLAMATION]; use JSON; use Digest::MD5 qw(md5_hex); sub import { no strict 'refs'; my $caller = caller; #@EXPORT: *{"$caller\::$_"} = \&{"$_"} for qw(pruefen anmeldung change_pwd); } # import #... MfG perl -E'*==*",s;;%ENV=~m,..$,,$&+42;e,$==f;$"++for+ab..an;@"=qw,u t,,print+chr;sub f{split}say"@{=} me"'
|