diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:18:54 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:18:54 -0600 |
commit | 85d50dfcd13d7cfb07afcbca2ed46a4b747640ea (patch) | |
tree | 62893006dbe753a2087a356bc37f1006b15e5b87 /digikam/libs/imageproperties/imagepropertiestab.cpp | |
parent | a92eb961725ae34e44cdee1312cad40b8f2cfb58 (diff) | |
download | digikam-85d50dfcd13d7cfb07afcbca2ed46a4b747640ea.tar.gz digikam-85d50dfcd13d7cfb07afcbca2ed46a4b747640ea.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'digikam/libs/imageproperties/imagepropertiestab.cpp')
-rw-r--r-- | digikam/libs/imageproperties/imagepropertiestab.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/digikam/libs/imageproperties/imagepropertiestab.cpp b/digikam/libs/imageproperties/imagepropertiestab.cpp index 34b822f9..3978775c 100644 --- a/digikam/libs/imageproperties/imagepropertiestab.cpp +++ b/digikam/libs/imageproperties/imagepropertiestab.cpp @@ -422,11 +422,11 @@ void ImagePropertiesTab::setCurrentURL(const KURL& url) d->labelFolder->setText(url.directory()); TQDateTime modifiedDate = fileInfo.lastModified(); - str = KGlobal::locale()->formatDateTime(modifiedDate, true, true); + str = TDEGlobal::locale()->formatDateTime(modifiedDate, true, true); d->labelFileModifiedDate->setText(str); str = TQString("%1 (%2)").arg(KIO::convertSize(fi.size())) - .arg(KGlobal::locale()->formatNumber(fi.size(), 0)); + .arg(TDEGlobal::locale()->formatNumber(fi.size(), 0)); d->labelFileSize->setText(str); d->labelFileOwner->setText( TQString("%1 - %2").arg(fi.user()).arg(fi.group()) ); @@ -563,7 +563,7 @@ void ImagePropertiesTab::setCurrentURL(const KURL& url) if (photoInfo.dateTime.isValid()) { - str = KGlobal::locale()->formatDateTime(photoInfo.dateTime, true, true); + str = TDEGlobal::locale()->formatDateTime(photoInfo.dateTime, true, true); d->labelPhotoDateTime->setText(str); } else |