summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2011-11-07 20:49:48 +1100
committerTobias Hunger <tobias.hunger@nokia.com>2011-11-08 09:43:24 +0100
commit28668eea867a4006cc09140994e8c4ffa46df32c (patch)
treeda1523630704967ebf8feab29dcfef85582ec21b /src/plugins
parentc8b44dedfb0f1e3682766cf694bf4a1221017e9c (diff)
downloadqt-creator-28668eea867a4006cc09140994e8c4ffa46df32c.tar.gz
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>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/subversion/subversionplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/subversion/subversionplugin.cpp b/src/plugins/subversion/subversionplugin.cpp
index 66c4ecfc0e..34de9a7e4a 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.