11 lines
189 B
QML
11 lines
189 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
DeprecatedFunctions {
|
||
|
@Deprecated { reason: "No particular reason." }
|
||
|
function deprecated(foobar) {}
|
||
|
|
||
|
Component.onCompleted: {
|
||
|
deprecated();
|
||
|
}
|
||
|
}
|