Minor bugfixes
This commit is contained in:
parent
bb7f3d6fca
commit
d29e810719
2 changed files with 3 additions and 3 deletions
|
@ -11,8 +11,8 @@ SOURCES += devicesplugin.cpp
|
||||||
HEADERS += devicesplugin.h
|
HEADERS += devicesplugin.h
|
||||||
#RESOURCES += Devices.qrc
|
#RESOURCES += Devices.qrc
|
||||||
macx {
|
macx {
|
||||||
LIBS += -framework \
|
LIBS += -F../../TelldusCenter/TelldusCenter.app/Contents/Frameworks -framework \
|
||||||
TelldusGui
|
TelldusGui -framework TelldusCore
|
||||||
DESTDIR = ../../TelldusCenter/TelldusCenter.app/Contents/Plugins
|
DESTDIR = ../../TelldusCenter/TelldusCenter.app/Contents/Plugins
|
||||||
}
|
}
|
||||||
!macx {
|
!macx {
|
||||||
|
|
|
@ -15,7 +15,7 @@ QString DevicesPlugin::pluginName() const {
|
||||||
|
|
||||||
QWidget *DevicesPlugin::widget( const QString &page, QWidget *parent ) const {
|
QWidget *DevicesPlugin::widget( const QString &page, QWidget *parent ) const {
|
||||||
QWidget *deviceWidget = tdDeviceWidget(parent);
|
QWidget *deviceWidget = tdDeviceWidget(parent);
|
||||||
connect(deviceWidget, SIGNAL(showMessage(const QString &, const QString &, const QString &)), qApp, SLOT(showMessage(const QString &, const QString &, const QString &)));
|
connect(deviceWidget, SIGNAL(showMessage(const QString &, const QString &, const QString &)), qApp, SIGNAL(showMessage(const QString &, const QString &, const QString &)));
|
||||||
connect(deviceWidget, SIGNAL(eventTriggered(const QString &, const QString &)), qApp, SLOT(eventTriggered(const QString &, const QString &)));
|
connect(deviceWidget, SIGNAL(eventTriggered(const QString &, const QString &)), qApp, SLOT(eventTriggered(const QString &, const QString &)));
|
||||||
return deviceWidget;
|
return deviceWidget;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue