14 lines
228 B
QML
14 lines
228 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
property bool bluebubblesAvailable: true
|
|
property int launchCount: 0
|
|
|
|
function openApplication(id: string): bool {
|
|
launchCount += 1;
|
|
return false;
|
|
}
|
|
}
|