Commit 06b6f0f6 authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwidgets/interface.cpp: bring back text wrapping on win32 for the about dialog box.

parent 455441da
......@@ -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 <videolan@videolan.org>\n"
"http://www.videolan.org/\n\n")) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment