diff --git a/code/nel/tools/3d/object_viewer_qt/src/plugins/core/context_manager.cpp b/code/nel/tools/3d/object_viewer_qt/src/plugins/core/context_manager.cpp index b0a13aee6..23d544593 100644 --- a/code/nel/tools/3d/object_viewer_qt/src/plugins/core/context_manager.cpp +++ b/code/nel/tools/3d/object_viewer_qt/src/plugins/core/context_manager.cpp @@ -49,9 +49,9 @@ ContextManager::ContextManager(ExtensionSystem::IPluginManager *pluginManager, Q : d(new ContextManagerPrivate(pluginManager, tabWidget)) { QObject::connect(d->m_pluginManager, SIGNAL(objectAdded(QObject *)), - this, SLOT(objectAdded(QObject *))); + this, SLOT(objectAdded(QObject *))); QObject::connect(d->m_pluginManager, SIGNAL(aboutToRemoveObject(QObject *)), - this, SLOT(aboutToRemoveObject(QObject *))); + this, SLOT(aboutToRemoveObject(QObject *))); QObject::connect(d->m_tabWidget, SIGNAL(currentChanged(int)), this, SLOT(currentTabChanged(int))); } @@ -86,15 +86,15 @@ void ContextManager::activateContext(const QString &id) void ContextManager::objectAdded(QObject *obj) { - IContext *context = qobject_cast(obj); - if (context) + IContext *context = qobject_cast(obj); + if (context) addContextObject(context); } void ContextManager::aboutToRemoveObject(QObject *obj) { - IContext *context = qobject_cast(obj); - if (context) + IContext *context = qobject_cast(obj); + if (context) removeContextObject(context); } @@ -102,11 +102,11 @@ void ContextManager::addContextObject(IContext *context) { d->m_contexts.push_back(context); - QWidget *tabWidget = new QWidget(d->m_tabWidget); - d->m_tabWidget->addTab(tabWidget, context->icon(), context->trName()); - QGridLayout *gridLayout = new QGridLayout(tabWidget); - gridLayout->setObjectName(QString::fromUtf8("gridLayout_") + context->id()); - gridLayout->setContentsMargins(0, 0, 0, 0); + QWidget *tabWidget = new QWidget(d->m_tabWidget); + d->m_tabWidget->addTab(tabWidget, context->icon(), context->trName()); + QGridLayout *gridLayout = new QGridLayout(tabWidget); + gridLayout->setObjectName(QString::fromUtf8("gridLayout_") + context->id()); + gridLayout->setContentsMargins(0, 0, 0, 0); gridLayout->addWidget(context->widget(), 0, 0, 1, 1); } @@ -121,15 +121,15 @@ void ContextManager::removeContextObject(IContext *context) void ContextManager::currentTabChanged(int index) { - if (index >= 0) + if (index >= 0) { IContext *context = d->m_contexts.at(index); - IContext *oldContext = 0; - if (d->m_oldCurrent >= 0) - oldContext = d->m_contexts.at(d->m_oldCurrent); - d->m_oldCurrent = index; - Q_EMIT currentContextChanged(context, oldContext); - } + IContext *oldContext = 0; + if (d->m_oldCurrent >= 0) + oldContext = d->m_contexts.at(d->m_oldCurrent); + d->m_oldCurrent = index; + Q_EMIT currentContextChanged(context, oldContext); + } } int ContextManager::indexOf(const QString &id) const