diff --git a/APBUARTPLUGIN/APBUARTPLUGIN.cpp b/APBUARTPLUGIN/APBUARTPLUGIN.cpp --- a/APBUARTPLUGIN/APBUARTPLUGIN.cpp +++ b/APBUARTPLUGIN/APBUARTPLUGIN.cpp @@ -26,7 +26,6 @@ ApbUartPlugin::ApbUartPlugin(QWidget *parent):socexplorerplugin(parent) { this->UI = new ApbUartPluginUi(); - this->setWindowTitle(tr("APBUART")); this->setWidget((QWidget*)this->UI); this->useLoopBack = false; connect(this->UI,SIGNAL(loopbackChkBxStateChanged(int)),this,SLOT(loopbackChangeState(int))); diff --git a/ahbuartplugin/ahbuartplugin.cpp b/ahbuartplugin/ahbuartplugin.cpp --- a/ahbuartplugin/ahbuartplugin.cpp +++ b/ahbuartplugin/ahbuartplugin.cpp @@ -39,7 +39,6 @@ ahbuartplugin::ahbuartplugin(QWidget *pa this->portMutex = new QMutex(QMutex::Recursive); this->UI = new ahbUartPluginUI(); this->setWidget((QWidget*)this->UI); - this->setWindowTitle(tr("AHB UART")); QObject::connect(this,SIGNAL(activateSig(bool)),this->UI,SLOT(setConnected(bool))); QObject::connect(this->UI,SIGNAL(connectPortsig(QString,int)),this,SLOT(togglePort(QString,int))); this->pyObject = new ahbuartPywrapper(this); diff --git a/ambaplugin/ambaplugin.cpp b/ambaplugin/ambaplugin.cpp --- a/ambaplugin/ambaplugin.cpp +++ b/ambaplugin/ambaplugin.cpp @@ -25,7 +25,6 @@ ambaplugin::ambaplugin(QWidget *parent):socexplorerplugin(parent,true) { this->UI = new ambaPluginUI(this); - this->setWindowTitle(tr("AMBA Driver")); this->setWidget((QWidget*)this->UI); connect(this->UI,SIGNAL(ReadSig(uint*,uint,uint)),this,SLOT(Read(uint*,uint,uint))); connect(this->UI,SIGNAL(WriteSig(uint*,uint,uint)),this,SLOT(Write(uint*,uint,uint))); diff --git a/dsu3plugin/dsu3plugin.cpp b/dsu3plugin/dsu3plugin.cpp --- a/dsu3plugin/dsu3plugin.cpp +++ b/dsu3plugin/dsu3plugin.cpp @@ -28,7 +28,6 @@ dsu3plugin::dsu3plugin(QWidget *parent):socexplorerplugin(parent,false) { this->UI = new dsu3pluginui(); - this->setWindowTitle(tr("DSU3 Driver")); this->setWidget((QWidget*)this->UI); this->elfparserInst = new elfparser(); this->pyObject = new dsu3pluginPywrapper(this); diff --git a/genericrwplugin/genericrwplugin.cpp b/genericrwplugin/genericrwplugin.cpp --- a/genericrwplugin/genericrwplugin.cpp +++ b/genericrwplugin/genericrwplugin.cpp @@ -24,7 +24,6 @@ genericrwplugin::genericrwplugin(QWidget *parent):socexplorerplugin(parent,false) { this->UI = new genericrwpluginUi(); - this->setWindowTitle(tr("Generic Driver")); this->setWidget((QWidget*)this->UI); connect(this->UI,SIGNAL(ReadSig(uint*,uint,uint)),this,SLOT(Read(uint*,uint,uint))); connect(this->UI,SIGNAL(WriteSig(uint*,uint,uint)),this,SLOT(Write(uint*,uint,uint))); diff --git a/memctrlrplugin/memctrlrplugin.cpp b/memctrlrplugin/memctrlrplugin.cpp --- a/memctrlrplugin/memctrlrplugin.cpp +++ b/memctrlrplugin/memctrlrplugin.cpp @@ -25,7 +25,6 @@ memctrlrplugin::memctrlrplugin(QWidget *parent):socexplorerplugin(parent,false) { this->UI = new memctrlrPluginUi(); - this->setWindowTitle(tr("Memctrlr Driver")); this->setWidget((QWidget*)this->UI); connect(this->UI,SIGNAL(WriteSig(uint*,uint,uint)),this,SLOT(Write(uint*,uint,uint))); connect(this->UI,SIGNAL(ReadSig(uint*,uint,uint)),this,SLOT(Read(uint*,uint,uint))); diff --git a/memctrlrplugin/memctrlrplugin.h b/memctrlrplugin/memctrlrplugin.h --- a/memctrlrplugin/memctrlrplugin.h +++ b/memctrlrplugin/memctrlrplugin.h @@ -26,7 +26,7 @@ #include #include #include - +#include #include diff --git a/spwplugin/spwplugin.h b/spwplugin/spwplugin.h --- a/spwplugin/spwplugin.h +++ b/spwplugin/spwplugin.h @@ -10,8 +10,8 @@ #include #include +#include #include -#include class spwplugin : public socexplorerplugin