diff --git a/applications/settings/modules/time/timezonesmodel.cpp b/applications/settings/modules/time/timezonesmodel.cpp index d42bf5b3..6b994d9c 100644 --- a/applications/settings/modules/time/timezonesmodel.cpp +++ b/applications/settings/modules/time/timezonesmodel.cpp @@ -1,46 +1,46 @@ /* * Copyright 2011 Marco Martin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details * * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "timezonesmodel.h" TimeZonesModel::TimeZonesModel(QObject *parent) : QStandardItemModel(parent) { QHash roleNames; roleNames[Qt::DisplayRole] = "display"; roleNames[Qt::UserRole+1] = "continent"; setRoleNames(roleNames); - connect(this, SIGNAL(modelReset()), this, SIGNAL(countChanged)); - connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SIGNAL(countChanged)); - connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, SIGNAL(countChanged)); + connect(this, SIGNAL(modelReset()), this, SIGNAL(countChanged())); + connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SIGNAL(countChanged())); + connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, SIGNAL(countChanged())); } QVariantHash TimeZonesModel::get(int i) const { QModelIndex idx = index(i, 0); QVariantHash hash; hash["display"] = data(idx, Qt::DisplayRole); hash["continent"] = data(idx, Qt::UserRole+1); return hash; } #include "timezonesmodel.moc" diff --git a/config/ksmserverrc b/config/ksmserverrc index 0c129c3b..6c2a7c3f 100644 --- a/config/ksmserverrc +++ b/config/ksmserverrc @@ -1,4 +1,2 @@ [General] -windowManager=kwin_gles -loginMode=default - +theme=contour