--- a/src/hbinput/inputwidgets/hbinputsettingwidget.cpp Thu May 27 13:10:59 2010 +0300
+++ b/src/hbinput/inputwidgets/hbinputsettingwidget.cpp Fri Jun 11 13:58:22 2010 +0300
@@ -28,6 +28,7 @@
#include <hbinpututils.h>
#include <hbinputsettingproxy.h>
#include <hbinputpredictionfactory.h>
+#include <QtAlgorithms>
#include "hbinputsettingwidget.h"
#include "hbinputcheckboxlist_p.h"
@@ -37,6 +38,7 @@
const QString bestPrediction = QObject::tr("Best prediction");
const QString exactTyping = QObject::tr("Exact typing");
+
/// @cond
class HbInputSettingWidgetPrivate
@@ -225,7 +227,7 @@
*/
void HbInputSettingWidgetPrivate::fillLanguageList(QStringList &list, QList<HbInputLanguage> &languageList, const QString &replace)
{
- foreach(HbInputLanguage language, languageList) {
+ foreach(HbInputLanguage language, languageList) {
QString langName = language.localisedName();
if (langName.length() == 0) {
langName = replace;