From 06b6f0f6b39ccc2c70547a5d6ea898b3e0b4eeb8 Mon Sep 17 00:00:00 2001 From: Gildas Bazin Date: Wed, 3 Aug 2005 21:42:04 +0000 Subject: [PATCH] * modules/gui/wxwidgets/interface.cpp: bring back text wrapping on win32 for the about dialog box. --- modules/gui/wxwidgets/interface.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/gui/wxwidgets/interface.cpp b/modules/gui/wxwidgets/interface.cpp index 2bc3c53fea..351dcffcb1 100644 --- a/modules/gui/wxwidgets/interface.cpp +++ b/modules/gui/wxwidgets/interface.cpp @@ -863,7 +863,11 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) ) msg.Printf( wxString(wxT("VLC media player " PACKAGE_VERSION)) + wxU(_(" (wxWidgets interface)\n\n")) + wxU(_("(c) 1996-2005 - the VideoLAN Team\n\n")) + +#ifdef __WXMSW__ + wxU( vlc_wraptext(INTF_ABOUT_MSG,WRAPCOUNT,ISUTF8) ) + wxT("\n\n") + +#else wxU( INTF_ABOUT_MSG ) + wxT("\n\n") + +#endif wxU(_("The VideoLAN team \n" "http://www.videolan.org/\n\n")) ); -- 2.39.5