summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/vcsmanager.h
diff options
context:
space:
mode:
authorcon <qtc-committer@nokia.com>2009-11-10 18:02:42 +0100
committercon <qtc-committer@nokia.com>2009-11-10 18:19:37 +0100
commite4b1a25dd2bb8233a02c7ae5a5476e88ac4f0451 (patch)
tree01bc276d22f11b8196f6e64c86cd62887a8f9459 /src/plugins/coreplugin/vcsmanager.h
parent3cd7f49e71f263a5cc80cac90d5b15a2bbde0b56 (diff)
downloadqt-creator-e4b1a25dd2bb8233a02c7ae5a5476e88ac4f0451.tar.gz
Revert "Code model: Update on changes from the versioning system."
This reverts commit 7aa24116935249a840e1350a6f8de73bc794fb09. It breaks the code model updates completely. So reverting this change until we have the right thing. Reviewed-by: Roberto Raggi
Diffstat (limited to 'src/plugins/coreplugin/vcsmanager.h')
-rw-r--r--src/plugins/coreplugin/vcsmanager.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/plugins/coreplugin/vcsmanager.h b/src/plugins/coreplugin/vcsmanager.h
index 772243dd95..fa94efc618 100644
--- a/src/plugins/coreplugin/vcsmanager.h
+++ b/src/plugins/coreplugin/vcsmanager.h
@@ -33,7 +33,6 @@
#include "core_global.h"
#include <QtCore/QString>
-#include <QtCore/QObject>
namespace Core {
@@ -50,16 +49,13 @@ class IVersionControl;
// for the topmost directory it manages. This information is cached and
// VCSManager thus knows pretty fast which IVersionControl * is responsible.
-class CORE_EXPORT VCSManager : public QObject
+class CORE_EXPORT VCSManager
{
- Q_OBJECT
Q_DISABLE_COPY(VCSManager)
public:
- explicit VCSManager(QObject *parent = 0);
+ VCSManager();
virtual ~VCSManager();
- void extensionsInitialized();
-
IVersionControl *findVersionControlForDirectory(const QString &directory);
// Enable the VCS managing a certain directory only. This should
@@ -73,10 +69,6 @@ public:
// if a failure occurs
bool showDeleteDialog(const QString &fileName);
-signals:
- void repositoryChanged(const QString &repository);
- void filesChanged(const QStringList &files);
-
private:
VCSManagerPrivate *m_d;
};