diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:12 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:12 +0900 |
commit | 04e50e547f8ed2d6db996bc4816179fa962bd6b1 (patch) | |
tree | 5880f13b288d79e13e1a10f99c54b27bbe1fc942 /lib/kofficecore | |
parent | d1e35d25fca82e1d86a41895446f7aca8cdc3035 (diff) | |
download | koffice-04e50e547f8ed2d6db996bc4816179fa962bd6b1.tar.gz koffice-04e50e547f8ed2d6db996bc4816179fa962bd6b1.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/KoDetailsPane.cpp | 4 | ||||
-rw-r--r-- | lib/kofficecore/KoDocument.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoOpenPane.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoTemplates.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoView.cpp | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/lib/kofficecore/KoDetailsPane.cpp b/lib/kofficecore/KoDetailsPane.cpp index 03a70b5b..35b518ac 100644 --- a/lib/kofficecore/KoDetailsPane.cpp +++ b/lib/kofficecore/KoDetailsPane.cpp @@ -112,7 +112,7 @@ KoTemplatesPane::KoTemplatesPane(TQWidget* parent, TDEInstance* instance, for (KoTemplate* t = group->first(); t != 0L; t = group->next()) { TDEListViewItem* item = new TDEListViewItem(m_documentList, t->name(), t->description(), t->file()); TQImage icon = t->loadPicture(instance).convertToImage(); - icon = icon.smoothScale(64, 64, TQ_ScaleMin); + icon = icon.smoothScale(64, 64, TQImage::ScaleMin); icon.setAlphaBuffer(true); icon = icon.copy((icon.width() - 64) / 2, (icon.height() - 64) / 2, 64, 64); item->setPixmap(0, TQPixmap(icon)); @@ -418,7 +418,7 @@ void KoRecentDocumentsPane::updatePreview(const KFileItem* fileItem, const TQPix if(it.current()->text(1) == fileItem->url().url()) { it.current()->setPixmap(2, preview); TQImage icon = preview.convertToImage(); - icon = icon.smoothScale(64, 64, TQ_ScaleMin); + icon = icon.smoothScale(64, 64, TQImage::ScaleMin); icon.setAlphaBuffer(true); icon = icon.copy((icon.width() - 64) / 2, (icon.height() - 64) / 2, 64, 64); it.current()->setPixmap(0, TQPixmap(icon)); diff --git a/lib/kofficecore/KoDocument.cpp b/lib/kofficecore/KoDocument.cpp index e465ce77..3f32927e 100644 --- a/lib/kofficecore/KoDocument.cpp +++ b/lib/kofficecore/KoDocument.cpp @@ -173,7 +173,7 @@ public: TDEGlobal::iconLoader()->addAppDir("koffice"); m_view = 0L; // Avoid warning from KParts - we'll have the KoView as focus proxy anyway - setFocusPolicy( TQ_ClickFocus ); + setFocusPolicy( TQWidget::ClickFocus ); } virtual ~KoViewWrapperWidget() { diff --git a/lib/kofficecore/KoOpenPane.cpp b/lib/kofficecore/KoOpenPane.cpp index 130226be..3d7ff56e 100644 --- a/lib/kofficecore/KoOpenPane.cpp +++ b/lib/kofficecore/KoOpenPane.cpp @@ -275,7 +275,7 @@ TQListViewItem* KoOpenPane::addPane(const TQString& title, const TQPixmap& icon, TQImage image = icon.convertToImage(); if((image.width() > 48) || (image.height() > 48)) { - image = image.smoothScale(48, 48, TQ_ScaleMin); + image = image.smoothScale(48, 48, TQImage::ScaleMin); } image.setAlphaBuffer(true); diff --git a/lib/kofficecore/KoTemplates.cpp b/lib/kofficecore/KoTemplates.cpp index 2d0ba529..7e86257b 100644 --- a/lib/kofficecore/KoTemplates.cpp +++ b/lib/kofficecore/KoTemplates.cpp @@ -61,7 +61,7 @@ const TQPixmap &KoTemplate::loadPicture( TDEInstance* instance ) { } const int maxHeightWidth = 128; // ### TODO: some people would surely like to have 128x128 if (img.width() > maxHeightWidth || img.height() > maxHeightWidth) { - img = img.smoothScale( maxHeightWidth, maxHeightWidth, TQ_ScaleMax ); + img = img.smoothScale( maxHeightWidth, maxHeightWidth, TQImage::ScaleMax ); } m_pixmap.convertFromImage(img); return m_pixmap; diff --git a/lib/kofficecore/KoView.cpp b/lib/kofficecore/KoView.cpp index 94941259..322c1a7d 100644 --- a/lib/kofficecore/KoView.cpp +++ b/lib/kofficecore/KoView.cpp @@ -116,7 +116,7 @@ KoView::KoView( KoDocument *document, TQWidget *parent, const char *name ) d->m_doc = document; KParts::PartBase::setPartObject( TQT_TQOBJECT(this) ); - setFocusPolicy( TQ_StrongFocus ); + setFocusPolicy( TQWidget::StrongFocus ); setMouseTracking( true ); |