f336f80039
ConfigModel may contain ConfigCategory for both QML pages and KCM pages. The source property will be empty for KCM pages. This fixes correctly returning empty source for KCM pages. Also return the same value from get(). REVIEW: 127702
11 lines
189 B
QML
11 lines
189 B
QML
import QtQuick 2.0
|
|
import org.kde.plasma.configuration 2.0
|
|
|
|
ConfigModel {
|
|
ConfigCategory {
|
|
name: "General"
|
|
icon: "plasma"
|
|
source: "ConfigGeneral.qml"
|
|
}
|
|
}
|