summaryrefslogtreecommitdiffstats
path: root/src/entryiconview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-18 18:15:24 -0600
committerTimothy Pearson <[email protected]>2011-12-18 18:15:24 -0600
commit8d9b90ca794ffabf151719c2edebe9278a2d3f36 (patch)
tree55f446de8694c45be6bf0f1178920c2b92b0c9f5 /src/entryiconview.cpp
parent2781e27b871150395a5a82e221684108641002b2 (diff)
downloadtellico-8d9b90ca794ffabf151719c2edebe9278a2d3f36.tar.gz
tellico-8d9b90ca794ffabf151719c2edebe9278a2d3f36.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/entryiconview.cpp')
-rw-r--r--src/entryiconview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entryiconview.cpp b/src/entryiconview.cpp
index 105a0b4..a067a01 100644
--- a/src/entryiconview.cpp
+++ b/src/entryiconview.cpp
@@ -98,11 +98,11 @@ const TQPixmap& EntryIconView::defaultPixmap() {
return *pix;
}
KIconLoader* loader = KGlobal::instance()->iconLoader();
- TQPixmap tmp = loader->loadIcon(TQString::tqfromLatin1("nocover_") + CollectionFactory::typeName(m_coll->type()),
+ TQPixmap tmp = loader->loadIcon(TQString::fromLatin1("nocover_") + CollectionFactory::typeName(m_coll->type()),
KIcon::User, 0, KIcon::DefaultState, 0, true /*canReturnNull */);
if(tmp.isNull()) {
myLog() << "EntryIconView::defaultPixmap() - null nocover image, loading tellico.png" << endl;
- tmp = UserIcon(TQString::tqfromLatin1("tellico"));
+ tmp = UserIcon(TQString::fromLatin1("tellico"));
}
if(TQMAX(tmp.width(), tmp.height()) > static_cast<int>(MIN_ENTRY_ICON_SIZE)) {
tmp.convertFromImage(tmp.convertToImage().smoothScale(m_maxIconWidth, m_maxIconHeight, TQ_ScaleMin));