author | ulf69 <ulf69> | 2004-07-09 08:12:00 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-07-09 08:12:00 (UTC) |
commit | aae8af24992bf3b7b59fb425955153b86f31bb5d (patch) (side-by-side diff) | |
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 @@ -262,8 +262,8 @@ QString Field::value( const KABC::Addressee &a ) //the generated code had the following format: return a.birthday().date().toString( Qt::ISODate ); // But Qt::IsoDate was not specified. - QString _oldFormat = KGlobal::locale()->dateFormat(); - KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate - QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false); - KGlobal::locale()->setDateFormat(_oldFormat); +// QString _oldFormat = KGlobal::locale()->dateFormat(); +// KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate + QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false, KLocale::ISODate); +// KGlobal::locale()->setDateFormat(_oldFormat); return dt; } |