[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[TSVN] wrong svn version info in TMerge (in relation to rev 3038)

From: Martin Eckardt <Martin.Eckardt_at_micronova.de>
Date: 2005-04-18 15:36:31 CEST

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

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.