Subject: | missing Interpolation of \n |
Date: | Sun, 27 Jan 2008 15:06:48 +0100 |
To: | bug-UI-Dialog [...] rt.cpan.org |
From: | Richard_Moehn <richard.moehn [...] gmx.de> |
I've installed UI-Dialog-1.08 and tried to run following code with
perl v5.8.8 under Linux 2.6.22-3-686 (Debian GNU/Linux 4.0r2):
use UI:Dialog::Backend::XDialog;
my $dialog = new UI:Dialog::Backend::XDialog;
$dialog -> infobox(title => 'nice title',
text => "This\nis\nan\nexamle.");
But the \n isn't interpolated and so all the text appears on one line,
although the original Xdialog provides this feature.
I've also tried to out the text in a variable and used yesno and
msgbox, but it doesn't work.
There is no error message while running the program.