Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package/contents/ui/configAccounts.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import QtQuick
import QtQuick.Layouts
import org.kde.plasma.components as PlasmaComponents
import QtQuick.Controls
import org.kde.kcmutils // KCMLauncher
import org.kde.plasma.private.gmailfeed

Expand All @@ -45,11 +45,11 @@ SimpleKCM {

RowLayout {

PlasmaComponents.Label {
Label {
text: i18n("Current account: ")
}

PlasmaComponents.ComboBox {
ComboBox {
id: comboBox

model: accountsModel
Expand All @@ -61,7 +61,7 @@ SimpleKCM {
Layout.fillWidth: true
}

PlasmaComponents.Button {
Button {

icon.name: "applications-internet"
text: i18n("Manage accounts...")
Expand Down
6 changes: 3 additions & 3 deletions package/contents/ui/configGeneral.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import QtQuick
import QtQuick.Layouts
import org.kde.plasma.components as PlasmaComponents
import QtQuick.Controls
import org.kde.kcmutils

SimpleKCM {
Expand All @@ -28,11 +28,11 @@ SimpleKCM {
property alias cfg_pollinterval: spinbox.value

RowLayout {
PlasmaComponents.Label {
Label {
text: i18n("Polling interval: ")
}

PlasmaComponents.SpinBox {
SpinBox {
id: spinbox
from: 1
to: 90
Expand Down