diff options
author | Timothy Pearson <[email protected]> | 2013-02-04 14:01:37 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-04 14:01:37 -0600 |
commit | f8b1b30a5928beb707c51e29b58396645197ea5f (patch) | |
tree | fc57f5287fe4f43fa84d46eac9ae14cadede5c54 /src/projects/k3bdatapropertiesdialog.cpp | |
parent | bba095a5aab3f7cbf3ec062071e94f5c1e66e50b (diff) | |
download | k3b-f8b1b30a5928beb707c51e29b58396645197ea5f.tar.gz k3b-f8b1b30a5928beb707c51e29b58396645197ea5f.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'src/projects/k3bdatapropertiesdialog.cpp')
-rw-r--r-- | src/projects/k3bdatapropertiesdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projects/k3bdatapropertiesdialog.cpp b/src/projects/k3bdatapropertiesdialog.cpp index c3648ca..183f47c 100644 --- a/src/projects/k3bdatapropertiesdialog.cpp +++ b/src/projects/k3bdatapropertiesdialog.cpp @@ -92,7 +92,7 @@ K3bDataPropertiesDialog::K3bDataPropertiesDialog( K3bDataItem* dataItem, TQWidge if( K3bFileItem* fileItem = dynamic_cast<K3bFileItem*>(dataItem) ) { KFileItem kFileItem( KFileItem::Unknown, KFileItem::Unknown, KURL::fromPathOrURL(fileItem->localPath()) ); - labelMimeType->setPixmap( kFileItem.pixmap(KIcon::SizeLarge) ); + labelMimeType->setPixmap( kFileItem.pixmap(TDEIcon::SizeLarge) ); if( fileItem->isSymLink() ) m_labelType->setText( i18n("Link to %1").arg(kFileItem.mimeComment()) ); else @@ -116,7 +116,7 @@ K3bDataPropertiesDialog::K3bDataPropertiesDialog( K3bDataItem* dataItem, TQWidge i18n("and 1 directory", "and %n directories", dirItem->numDirs()) + ")" ); } else { - labelMimeType->setPixmap( DesktopIcon("unknown", KIcon::SizeLarge) ); + labelMimeType->setPixmap( DesktopIcon("unknown", TDEIcon::SizeLarge) ); m_labelType->setText( i18n("Special file") ); m_labelLocalName->hide(); m_labelLocalLocation->hide(); |