From 8aa90a5f2057a283f0f911470c33fb13594dc305 Mon Sep 17 00:00:00 2001 From: band-a-prend Date: Sun, 13 May 2018 05:20:15 +0300 Subject: [PATCH] Fix wxWidgets version displaying in About window The wxWidgets version is displayed now in "About" window of WX GUI. --- cr3wx/src/cr3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cr3wx/src/cr3.cpp b/cr3wx/src/cr3.cpp index ccb184113a..36117e2a86 100644 --- a/cr3wx/src/cr3.cpp +++ b/cr3wx/src/cr3.cpp @@ -1500,7 +1500,7 @@ cr3Frame::OnFileSave( wxCommandEvent& WXUNUSED( event ) ) void cr3Frame::OnAbout( wxCommandEvent& WXUNUSED( event ) ) { - wxMessageBox( wxT( "Cool Reader " wxT(CR3_VERSION) wxT("\n(c) 1998-2007 Vadim Lopatin\nwxWidgets version\n") ) + wxMessageBox( wxT( "Cool Reader " wxT(CR3_VERSION) wxT("\n(c) 1998-2018 Vadim Lopatin\n" wxVERSION_STRING"\n") ) wxT("\nBased on CREngine library " wxT(CR_ENGINE_VERSION) ) wxT("\nThird party libraries used:") wxT("\nzlib, libpng, libjpeg, freetype2,")