make ctrl-tab navigation view specific

This commit is contained in:
mae
2009-07-20 13:56:05 +02:00
parent f16d0c4d65
commit fa93352149
10 changed files with 151 additions and 99 deletions

View File

@@ -256,11 +256,6 @@ QList<Core::IEditor*> EditorManagerPrototype::openedEditors() const
return callee()->openedEditors();
}
QList<Core::IEditor*> EditorManagerPrototype::editorHistory() const
{
return callee()->editorHistory();
}
QList<Core::IEditor*> EditorManagerPrototype::editorsForFiles(QList<Core::IFile*> files) const
{
return callee()->editorsForFiles(files);

View File

@@ -165,7 +165,6 @@ class EditorManagerPrototype : public QObject, public QScriptable
Q_OBJECT
Q_PROPERTY(Core::IEditor* currentEditor READ currentEditor WRITE activateEditor DESIGNABLE false SCRIPTABLE true STORED false)
Q_PROPERTY(QList<Core::IEditor*> openedEditors READ openedEditors DESIGNABLE false SCRIPTABLE true STORED false)
Q_PROPERTY(QList<Core::IEditor*> editorHistory READ editorHistory DESIGNABLE false SCRIPTABLE true STORED false)
public:
typedef Core::EditorManager EditorManager;