projects
/
sdlgit/SDL_perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
be5d466
)
what ?
Kartik Thakore [Tue, 1 Sep 2009 02:23:48 +0000 (22:23 -0400)]
exp/SDL/Rect/lib/SDL/Rect.pm
patch
|
blob
|
blame
|
history
exp/SDL/Rect/t/001_load.t
patch
|
blob
|
blame
|
history
diff --git
a/exp/SDL/Rect/lib/SDL/Rect.pm
b/exp/SDL/Rect/lib/SDL/Rect.pm
index
c0c02e5
..
c17ba67
100644
(file)
--- a/
exp/SDL/Rect/lib/SDL/Rect.pm
+++ b/
exp/SDL/Rect/lib/SDL/Rect.pm
@@
-7,7
+7,7
@@
use strict;
require Exporter;
require DynaLoader;
@ISA = qw(Exporter DynaLoader);
- @EXPORT = qw( NewRect RectX RectY RectW RectH);
+ @EXPORT = qw(NewRect RectX RectY RectW RectH);
diff --git
a/exp/SDL/Rect/t/001_load.t
b/exp/SDL/Rect/t/001_load.t
index
6be37ec
..
97398c0
100644
(file)
--- a/
exp/SDL/Rect/t/001_load.t
+++ b/
exp/SDL/Rect/t/001_load.t
@@
-6,7
+6,7
@@
use Test::More tests => 2;
BEGIN { use_ok( 'SDL::Rect' ); }
-my $object = SDL::Rect->NewRect(0,0,0,0);
+my $object = SDL::Rect::NewRect(0,0,0,0);
isa_ok ($object, 'SDL::Rect');