Skip to content
Snippets Groups Projects
Commit db9e6104 authored by hjk's avatar hjk
Browse files

Core::Context: missed one connect()

parent 1d2d5222
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ FileManager::FileManager(QMainWindow *mw)
this, SLOT(changedFile(QString)));
connect(d->m_mainWindow, SIGNAL(windowActivated()),
this, SLOT(mainWindowActivated()));
connect(core, SIGNAL(contextChanged(Core::IContext*,QList<int>)),
connect(core, SIGNAL(contextChanged(Core::IContext*,Core::Context)),
this, SLOT(syncWithEditor(Core::IContext*)));
const QSettings *s = core->settings();
......
......@@ -34,7 +34,6 @@
#include <coreplugin/editormanager/ieditor.h>
#include <QtCore/QList>
#include <QtGui/QAbstractItemView>
QT_BEGIN_NAMESPACE
......@@ -91,8 +90,6 @@ class VCSBASE_EXPORT VCSBaseSubmitEditor : public Core::IEditor
Q_PROPERTY(bool lineWrap READ lineWrap WRITE setLineWrap DESIGNABLE true)
Q_PROPERTY(int lineWrapWidth READ lineWrapWidth WRITE setLineWrapWidth DESIGNABLE true)
Q_PROPERTY(QString checkScriptWorkingDirectory READ checkScriptWorkingDirectory WRITE setCheckScriptWorkingDirectory DESIGNABLE true)
public:
typedef QList<int> Context;
protected:
explicit VCSBaseSubmitEditor(const VCSBaseSubmitEditorParameters *parameters,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment