diff options
author | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-01 18:29:30 -0600 |
commit | b2af005db21bd8fd068cb79b2ae700953128af2c (patch) | |
tree | abd0ed633726bf0bbecb57d30e92836c31e02695 /PerlQt/examples/dclock/dclock.pl | |
parent | c1b9383f2032d82db5eb8918dca885e37a901dde (diff) | |
download | libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.tar.gz libtqt-perl-b2af005db21bd8fd068cb79b2ae700953128af2c.zip |
Move PerlQt
Diffstat (limited to 'PerlQt/examples/dclock/dclock.pl')
-rw-r--r-- | PerlQt/examples/dclock/dclock.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/PerlQt/examples/dclock/dclock.pl b/PerlQt/examples/dclock/dclock.pl deleted file mode 100644 index 57c02bd..0000000 --- a/PerlQt/examples/dclock/dclock.pl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/perl -w -use strict; -use TQt; -use DigitalClock; - -my $a = TQt::Application(\@ARGV); -my $clock = DigitalClock; -$clock->resize(170, 80); -$a->setMainWidget($clock); -$clock->setCaption("PerlTQt Example - Digital Clock"); -$clock->show; -exit $a->exec; |