mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 12:06:41 +00:00
removed some left-over signal slot stuff that shouldn't have been there in the first place
This commit is contained in:
parent
56163dcb2a
commit
b3b4fb3efb
2 changed files with 0 additions and 15 deletions
|
@ -247,8 +247,6 @@ void CSVWorld::SceneSubView::replaceToolbarAndWorldspace (CSVRender::WorldspaceW
|
||||||
mToolbar = toolbar;
|
mToolbar = toolbar;
|
||||||
|
|
||||||
connect (mScene, SIGNAL (focusToolbarRequest()), mToolbar, SLOT (setFocus()));
|
connect (mScene, SIGNAL (focusToolbarRequest()), mToolbar, SLOT (setFocus()));
|
||||||
connect (this, SIGNAL (updateSceneUserSetting(const QString &, const QStringList &)),
|
|
||||||
mScene, SLOT (updateUserSetting(const QString &, const QStringList &)));
|
|
||||||
connect (mToolbar, SIGNAL (focusSceneRequest()), mScene, SLOT (setFocus()));
|
connect (mToolbar, SIGNAL (focusSceneRequest()), mScene, SLOT (setFocus()));
|
||||||
|
|
||||||
mLayout->addWidget (mToolbar, 0);
|
mLayout->addWidget (mToolbar, 0);
|
||||||
|
@ -257,8 +255,3 @@ void CSVWorld::SceneSubView::replaceToolbarAndWorldspace (CSVRender::WorldspaceW
|
||||||
mScene->selectDefaultNavigationMode();
|
mScene->selectDefaultNavigationMode();
|
||||||
setFocusProxy (mScene);
|
setFocusProxy (mScene);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSVWorld::SceneSubView::updateUserSetting (const QString &key, const QStringList &list)
|
|
||||||
{
|
|
||||||
emit updateSceneUserSetting(key, list);
|
|
||||||
}
|
|
||||||
|
|
|
@ -83,14 +83,6 @@ namespace CSVWorld
|
||||||
void cellSelectionChanged (const CSMWorld::UniversalId& id);
|
void cellSelectionChanged (const CSMWorld::UniversalId& id);
|
||||||
|
|
||||||
void handleDrop(const std::vector<CSMWorld::UniversalId>& data);
|
void handleDrop(const std::vector<CSMWorld::UniversalId>& data);
|
||||||
|
|
||||||
public slots:
|
|
||||||
|
|
||||||
void updateUserSetting (const QString &, const QStringList &);
|
|
||||||
|
|
||||||
signals:
|
|
||||||
|
|
||||||
void updateSceneUserSetting (const QString &, const QStringList &);
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue