Hi,
attached is a patch similar to this applied in 3038. It fixes the about 
dialog of TMerge which wrongly showed "libsvn_diff 1.1.0, -dev" instead 
of "1.2.0, -dev".
Cheers
Martin
Index: src/TortoiseMerge/AboutDlg.cpp
===================================================================
--- src/TortoiseMerge/AboutDlg.cpp	(revision 3066)
+++ src/TortoiseMerge/AboutDlg.cpp	(working copy)
@@ -107,7 +107,7 @@
         GetDlgItem(IDC_VERSIONBOX)->SetWindowText(boxtitle);
         const svn_version_t * diffver = svn_diff_version();
         temp.Format(IDS_ABOUTVERSION, TSVN_VERMAJOR, TSVN_VERMINOR, TSVN_VERMICRO, TSVN_VERBUILD, _T(STRINGWIDTH),
-		diffver->major, diffver->major, diffver->patch, CString(diffver->tag), 
+		diffver->major, diffver->minor, diffver->patch, CString(diffver->tag), 
                 APR_MAJOR_VERSION, APR_MINOR_VERSION, APR_PATCH_VERSION,
                 API_MAJOR_VERSION, API_MINOR_VERSION, API_PATCH_VERSION,
                 APU_MAJOR_VERSION, APU_MINOR_VERSION, APU_PATCH_VERSION);
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Mon Apr 18 15:37:06 2005