#!/usr/bin/perl -w

use Qt;
use Preferences;

my $mw = new Preferences;
$qApp->setMainWidget($mw);
$mw->setCaption('Preferences Output');
$mw->show();
exit $qApp->exec();
