Merge remote-tracking branch 'origin/2.6'

This commit is contained in:
Eike Ziller
2012-08-02 07:41:18 +02:00
188 changed files with 2930 additions and 4166 deletions

View File

@@ -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)

View File

@@ -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; }