~kubuntu-members/perlkde/4.11

« back to all changes in this revision

Viewing changes to qtgui/examples/tools/settingseditor/settingseditor.pl

  • Committer: Arno Rehn
  • Date: 2011-01-06 17:49:41 UTC
  • Revision ID: git-v1:ada9e4b459cf6fabd0f3b9b164387469cb19d9bc
A patch by Ian Monroe and myself to modularize the repository.
See README.MODULARIZATION for details.

svn path=/trunk/KDE/kdebindings/perl/; revision=1212365

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/perl
2
 
 
3
 
use strict;
4
 
use warnings;
5
 
 
6
 
use strict;
7
 
use warnings;
8
 
use QtCore4;
9
 
use QtGui4;
10
 
use MainWindow;
11
 
 
12
 
sub main
13
 
{
14
 
    my $app = Qt::Application(\@ARGV);
15
 
    my $mainWin = MainWindow();
16
 
    $mainWin->show();
17
 
    return $app->exec();
18
 
}
19
 
 
20
 
exit main();