From 2d1efeceaaf84e881b83d4dc4adfb9ed7f942838 Mon Sep 17 00:00:00 2001 From: Bartosz Szatkowski Date: Thu, 26 Aug 2010 16:35:06 +0200 Subject: [PATCH] Fixed G plugin - settings - language change button icon for maemo --- .../plugins/google/src/GoogleSettingsDialog.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/trunk/src/plugins/google/src/GoogleSettingsDialog.cpp b/trunk/src/plugins/google/src/GoogleSettingsDialog.cpp index 94f07b3..39c1aec 100644 --- a/trunk/src/plugins/google/src/GoogleSettingsDialog.cpp +++ b/trunk/src/plugins/google/src/GoogleSettingsDialog.cpp @@ -44,7 +44,11 @@ GoogleSettingsDialog::GoogleSettingsDialog(QWidget *parent,QString langTo,QStrin _langFrom=languages.key(langFrom); - changeLangButton=new QPushButton(QIcon::fromTheme("object-flip-vertical"),tr("")); + #ifdef Q_WS_MAEMO_5 + changeLangButton=new QPushButton(QIcon::fromTheme("general_refresh"),tr("")); + #else + changeLangButton=new QPushButton(QIcon::fromTheme("object-flip-vertical"),tr("")); + #endif langFromLabel = new QLabel("From:"); langToLabel = new QLabel(" To: "); connectInfoLabel = new QLabel(tr("Google plugin make use of internet " -- 1.7.9.5