Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
Sorry - just reread your email - I mistakenly thought you were asking about $Wx::VERSION, not $Wx::wxVERSION. My bad. On Fri, Aug 27, 2010 at 4:57 PM, Mike Schroeder wrote: > On Fri, Aug 27, 2010 at 4:52 PM, Johan Vromans wrote: > >> How's that different from $Wx::wxVERSION ? >> >> > WxPerl ver

Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
On Fri, Aug 27, 2010 at 4:52 PM, Johan Vromans wrote: > How's that different from $Wx::wxVERSION ? > > WxPerl version: 0.970101 Wx version: wxWidgets 2.8.11 One tells you the wxPerl / Wx.pm version you are running, the other tells you the wxWidgets C++ libs you are running.

Re: Underlying wxWidgets version?

2010-08-27 Thread Johan Vromans
Mike Schroeder writes: > We do this in our About dialog: > >$self->show_message_dialog( > message => $package . $VERSION . "\n" . > "Powered by wxPerl " . $Wx::VERSION . "\n" . > wxVERSION_STRING, > caption => "About...", > style

Re: Underlying wxWidgets version?

2010-08-27 Thread Eric J. Roode
That was it, thanks to both of you! -- Eric

Re: Underlying wxWidgets version?

2010-08-27 Thread Mike Schroeder
We do this in our About dialog: $self->show_message_dialog( message => $package . $VERSION . "\n" . "Powered by wxPerl " . $Wx::VERSION . "\n" . wxVERSION_STRING, caption => "About...", style => wxOK | wxICON_INFORMATION, ); So

Underlying wxWidgets version?

2010-08-27 Thread Eric J. Roode
Hi all, How can one tell what version of the underlying wxWidgets library is being used? Thanks, -- Eric J. Roode