ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/lib/Gtk2/CV.pm
(Generate patch)

Comparing CV/lib/Gtk2/CV.pm (file contents):
Revision 1.7 by root, Sat Nov 8 02:45:25 2003 UTC vs.
Revision 1.12 by root, Sun Aug 1 20:00:56 2004 UTC

1package Gtk2::CV; 1package Gtk2::CV;
2 2
3use XSLoader; 3use XSLoader;
4 4
5$VERSION = 0.13; 5$VERSION = '0.3';
6 6
7XSLoader::load "Gtk2::CV", $VERSION; 7XSLoader::load "Gtk2::CV", $VERSION;
8 8
9use Gtk2; 9use Gtk2;
10 10
11sub find_rcfile { 11sub find_rcfile($) {
12 my $path; 12 my $path;
13 13
14 for (@INC) { 14 for (@INC) {
15 $path = "$_/Gtk2/CV/$_[0]"; 15 $path = "$_/Gtk2/CV/$_[0]";
16 return $path if -r $path; 16 return $path if -r $path;
17 } 17 }
18 18
19 die "FATAL: can't find required file $_[0]\n"; 19 die "FATAL: can't find required file $_[0]\n";
20} 20}
21 21
22sub require_image { 22sub require_image($) {
23 new_from_file Gtk2::Gdk::Pixbuf find_rcfile "images/$_[0]"; 23 new_from_file Gtk2::Gdk::Pixbuf find_rcfile "images/$_[0]";
24} 24}
25 25
261; 261;
27 27

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines