From 28668eea867a4006cc09140994e8c4ffa46df32c Mon Sep 17 00:00:00 2001 From: Jonathan Liu <net147@gmail.com> Date: Mon, 7 Nov 2011 20:49:48 +1100 Subject: [PATCH] SVN: Fix Subversion 1.6 and earlier support after refactoring After refactoring in fa2c24d92b23b23d0548c4cdcd653d7adc6326cc, Subversion 1.6 and earlier working copies are not detected properly which results in the Subversion menu missing. This fixes the detection by correcting a typo in the last return statement. Change-Id: I64334a3f46e94b2b36e8a83b1833cf899fdb58c6 Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com> --- src/plugins/subversion/subversionplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/subversion/subversionplugin.cpp b/src/plugins/subversion/subversionplugin.cpp index 66c4ecfc0e6..34de9a7e4ae 100644 --- a/src/plugins/subversion/subversionplugin.cpp +++ b/src/plugins/subversion/subversionplugin.cpp @@ -1393,7 +1393,7 @@ bool SubversionPlugin::managesDirectory(const QString &directory, QString *topLe } } } - return false; + return true; } // Check whether SVN management subdirs exist. -- GitLab