Re: [Interest] QML function super call

2014-05-22 Thread Michael Brasser
Hi, For reference, this issue is logged as https://bugreports.qt-project.org/browse/QTBUG-25942. Regards,Michael > From: wolfgang.ba...@gmx.net > To: interest@qt-project.org > Date: Thu, 22 May 2014 11:42:07 +0200 > Subject: [Interest] QML function super call > > How can I

[Interest] QML function super call

2014-05-22 Thread Wolfgang Baron
How can I call the function implementation in a base class, if the class overrides the definition? Here is an example: Base.qml: --- import QtQuick 2.2 Item { function myFunc() { console.log( "Base myFunc called" ); } } --- Derived.qml: --- impo