author | ulf69 <ulf69> | 2004-07-09 08:12:00 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-07-09 08:12:00 (UTC) |
commit | aae8af24992bf3b7b59fb425955153b86f31bb5d (patch) (unidiff) | |
tree | 2ad2e501a14c5a96bf5c7deebd3638bed405350e /kabc/field.cpp | |
parent | de99e22a7093e857ee3c08a67ccc389d6374099a (diff) | |
download | kdepimpi-aae8af24992bf3b7b59fb425955153b86f31bb5d.zip kdepimpi-aae8af24992bf3b7b59fb425955153b86f31bb5d.tar.gz kdepimpi-aae8af24992bf3b7b59fb425955153b86f31bb5d.tar.bz2 |
IntDateFormat is now an enum instead of an ionteger value
-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 | |||
@@ -260,12 +260,12 @@ QString Field::value( const KABC::Addressee &a ) | |||
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; |