summaryrefslogtreecommitdiff
path: root/src/plugins/cvs/cvscontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cvs/cvscontrol.cpp')
-rw-r--r--src/plugins/cvs/cvscontrol.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/cvs/cvscontrol.cpp b/src/plugins/cvs/cvscontrol.cpp
index ff274a1390..ceb1eeca66 100644
--- a/src/plugins/cvs/cvscontrol.cpp
+++ b/src/plugins/cvs/cvscontrol.cpp
@@ -29,6 +29,8 @@
****************************************************************************/
#include "cvscontrol.h"
+
+#include "cvsclient.h"
#include "cvsplugin.h"
#include "cvssettings.h"
@@ -58,7 +60,7 @@ Core::Id CvsControl::id() const
bool CvsControl::isConfigured() const
{
- const Utils::FileName binary = m_plugin->settings().binaryPath();
+ const Utils::FileName binary = m_plugin->client()->vcsBinary();
if (binary.isEmpty())
return false;
QFileInfo fi = binary.toFileInfo();
@@ -149,8 +151,3 @@ void CvsControl::emitFilesChanged(const QStringList &l)
{
emit filesChanged(l);
}
-
-void CvsControl::emitConfigurationChanged()
-{
- emit configurationChanged();
-}