-rw-r--r-- | kabc/field.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kabc/field.cpp b/kabc/field.cpp index bc2e176..e27970e 100644 --- a/kabc/field.cpp +++ b/kabc/field.cpp | |||
@@ -256,20 +256,20 @@ QString Field::value( const KABC::Addressee &a ) | |||
256 | case FieldImpl::Note: | 256 | case FieldImpl::Note: |
257 | return a.note(); | 257 | return a.note(); |
258 | case FieldImpl::Email: | 258 | case FieldImpl::Email: |
259 | return a.preferredEmail(); | 259 | return a.preferredEmail(); |
260 | case FieldImpl::Birthday: | 260 | case FieldImpl::Birthday: |
261 | if ( a.birthday().isValid() ) { | 261 | if ( a.birthday().isValid() ) { |
262 | //the generated code had the following format: return a.birthday().date().toString( Qt::ISODate ); | 262 | //the generated code had the following format: return a.birthday().date().toString( Qt::ISODate ); |
263 | // But Qt::IsoDate was not specified. | 263 | // But Qt::IsoDate was not specified. |
264 | QString _oldFormat = KGlobal::locale()->dateFormat(); | 264 | // QString _oldFormat = KGlobal::locale()->dateFormat(); |
265 | KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate | 265 | // KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate |
266 | QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false); | 266 | QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false, KLocale::ISODate); |
267 | KGlobal::locale()->setDateFormat(_oldFormat); | 267 | // KGlobal::locale()->setDateFormat(_oldFormat); |
268 | return dt; | 268 | return dt; |
269 | } | 269 | } |
270 | else | 270 | else |
271 | return QString::null; | 271 | return QString::null; |
272 | case FieldImpl::Url: | 272 | case FieldImpl::Url: |
273 | return a.url().prettyURL(); | 273 | return a.url().prettyURL(); |
274 | //US | 274 | //US |
275 | case FieldImpl::Resource: | 275 | case FieldImpl::Resource: |