forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/2.6'
This commit is contained in:
@@ -4,9 +4,13 @@ DEFINES += CORE_LIBRARY
|
||||
QT += network \
|
||||
script \
|
||||
sql
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += printsupport
|
||||
|
||||
CONFIG += help
|
||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
||||
QT += help printsupport
|
||||
} else {
|
||||
CONFIG += help
|
||||
}
|
||||
|
||||
include(../../qtcreatorplugin.pri)
|
||||
include(../../libs/utils/utils.pri)
|
||||
include(../../shared/scriptwrapper/scriptwrapper.pri)
|
||||
|
||||
@@ -75,7 +75,7 @@ class CORE_EXPORT IContext : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
IContext(QObject *parent = 0) : QObject(parent), m_widget(0) {}
|
||||
IContext(QObject *parent = 0) : QObject(parent) {}
|
||||
|
||||
virtual Context context() const { return m_context; }
|
||||
virtual QWidget *widget() const { return m_widget; }
|
||||
|
||||
Reference in New Issue
Block a user