/usr/lib/perl5/KDEUi4.pm is in libkdeui4-perl 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | #***************************************************************************
# KDEUi4.pm - KDEUi perl client lib
# -------------------
# begin : 03-29-2010
# copyright : (C) 2009 by Chris Burel
# email : chrisburel@gmail.com
# ***************************************************************************
#***************************************************************************
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# ***************************************************************************
package KDEUi4::_internal;
use strict;
use warnings;
use QtGui4;
use KDECore4;
use base qw(KDECore4::_internal);
sub init {
foreach my $c ( @{getClassList()} ) {
KDEUi4::_internal->init_class($c);
}
foreach my $e ( @{getEnumList()} ) {
KDEUi4::_internal->init_enum($e);
}
}
sub KDE::Application::NEW {
my $class = shift;
my $retval = KDE::Application::KApplication( @_ );
bless( $retval, " $class" );
Qt::_internal::setThis( $retval );
setKApp( $retval );
}
package KDEUi4;
use strict;
use warnings;
use QtGui4;
use KDECore4;
require Exporter;
require XSLoader;
our $VERSION = '0.01';
our @EXPORT = qw( kapp );
XSLoader::load('KDEUi4', $VERSION);
KDEUi4::_internal::init();
sub import { goto &Exporter::import }
1;
|