--- a/logsui/logsengine/src/logsconfigurationparams.cpp Wed Aug 18 09:49:12 2010 +0300
+++ b/logsui/logsengine/src/logsconfigurationparams.cpp Thu Sep 02 20:27:05 2010 +0300
@@ -24,7 +24,7 @@
// -----------------------------------------------------------------------------
//
LogsConfigurationParams::LogsConfigurationParams( QObject* parent ) :
- QObject(parent), mListItemTextWidth(0)
+ QObject(parent), mListItemTextWidth(0), mLocaleChanged(false)
{
LOGS_QDEBUG( "logs [ENG] <-> LogsConfigurationParams::LogsConfigurationParams()" )
@@ -40,6 +40,7 @@
LOGS_QDEBUG( "logs [ENG] <-> LogsConfigurationParams::operator=()" )
mListItemTextWidth = params.mListItemTextWidth;
+ mLocaleChanged = params.mLocaleChanged;
return *this;
}
@@ -70,5 +71,23 @@
return mListItemTextWidth;
}
+// -----------------------------------------------------------------------------
+//
+// -----------------------------------------------------------------------------
+//
+void LogsConfigurationParams::setLocaleChanged(bool changed)
+{
+ mLocaleChanged = changed;
+}
+
+// -----------------------------------------------------------------------------
+//
+// -----------------------------------------------------------------------------
+//
+bool LogsConfigurationParams::localeChanged() const
+{
+ return mLocaleChanged;
+}
+
// End of file