Merge branch 'Plasma/5.2'

icc-effect-5.14.5
Martin Gräßlin 2015-02-03 14:02:31 +01:00
commit a6583b0f25
1 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,11 @@ Connection *Connection::s_self = nullptr;
static Context *s_context = nullptr;
Connection::Connection(QObject *parent) = delete;
Connection::Connection(QObject *parent)
: Connection(nullptr, parent)
{
// only here to fix build, using will crash, BUG 343529
}
Connection *Connection::create(QObject *parent)
{