summaryrefslogtreecommitdiffstats
path: root/PerlTQt/lib/Qt/GlobalSpace.pm
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-01 18:43:39 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-01 18:43:39 -0600
commit795a0355a40293affc7164507e918440d4a828d6 (patch)
tree9724723196b77633801918030aa2e293dc8246fb /PerlTQt/lib/Qt/GlobalSpace.pm
parent55e5c730361b5f2640f155aef4518ca69c4fc1b4 (diff)
downloadlibtqt-perl-795a0355a40293affc7164507e918440d4a828d6.tar.gz
libtqt-perl-795a0355a40293affc7164507e918440d4a828d6.zip
Move Qt
Diffstat (limited to 'PerlTQt/lib/Qt/GlobalSpace.pm')
-rw-r--r--PerlTQt/lib/Qt/GlobalSpace.pm25
1 files changed, 0 insertions, 25 deletions
diff --git a/PerlTQt/lib/Qt/GlobalSpace.pm b/PerlTQt/lib/Qt/GlobalSpace.pm
deleted file mode 100644
index 75f30a2..0000000
--- a/PerlTQt/lib/Qt/GlobalSpace.pm
+++ /dev/null
@@ -1,25 +0,0 @@
-package TQt::GlobalSpace;
-use strict;
-require TQt;
-require Exporter;
-
-our @ISA = qw(Exporter);
-our @EXPORT;
-our $allMeth = TQt::_internal::findAllMethods( TQt::_internal::idClass("TQGlobalSpace") );
-no strict 'refs';
-
-for my $proto( keys %$allMeth )
-{
- next if $proto =~ /operator\W/; # skip operators
- $proto =~ s/[\#\$\?]+$//;
- *{ $proto } = sub
- {
- $TQt::_internal::autoload::AUTOLOAD = "TQt::GlobalSpace\::$proto";
- goto &TQt::GlobalSpace::AUTOLOAD
- } unless defined &$proto;
- push @EXPORT, $proto;
-}
-
-our %EXPORT_TAGS = ( "all" => [@EXPORT] );
-
-1; \ No newline at end of file