From 2a1d92fa1f6a894e3533c8e371d2349e3148fc1e Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Wed, 28 Sep 2016 11:40:42 +0200 Subject: [PATCH] fix(Styles): use `Colors` --- .../Styles/Form/TransparentComboBoxStyle.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/ui/modules/Linphone/Styles/Form/TransparentComboBoxStyle.qml diff --git a/tests/ui/modules/Linphone/Styles/Form/TransparentComboBoxStyle.qml b/tests/ui/modules/Linphone/Styles/Form/TransparentComboBoxStyle.qml new file mode 100644 index 000000000..08e2c70ec --- /dev/null +++ b/tests/ui/modules/Linphone/Styles/Form/TransparentComboBoxStyle.qml @@ -0,0 +1,14 @@ +pragma Singleton +import QtQuick 2.7 + +import Linphone 1.0 + +QtObject { + property QtObject item: QtObject { + property QtObject color: QtObject { + property color normal: Colors.k + property color pressed: Colors.i + property color selected: Colors.k + } + } +}