diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-02 15:50:23 +0900 |
commit | d82c9bd8b659143ef1c13dfff0f0a1a6da99e11f (patch) | |
tree | 6e56f2ff567a5df1e23653c27dc39f2e7994c432 /src/entryiconfactory.cpp | |
parent | 074a3e6db609cc04e0a5830b0c1884447d0e5bbb (diff) | |
download | tellico-d82c9bd8b659143ef1c13dfff0f0a1a6da99e11f.tar.gz tellico-d82c9bd8b659143ef1c13dfff0f0a1a6da99e11f.zip |
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/entryiconfactory.cpp')
-rw-r--r-- | src/entryiconfactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entryiconfactory.cpp b/src/entryiconfactory.cpp index a01d982..d852d09 100644 --- a/src/entryiconfactory.cpp +++ b/src/entryiconfactory.cpp @@ -30,7 +30,7 @@ TQPixmap* EntryIconFactory::createPixmap(const TQIconSet&, TQIconSet::Size, TQIc // if we're 22x22 or smaller, just use entry icon if(m_size < 23) { TQImage entryImg = entryPix.convertToImage(); - entryPix.convertFromImage(entryImg.smoothScale(m_size, m_size, TQ_ScaleMin), 0); + entryPix.convertFromImage(entryImg.smoothScale(m_size, m_size, TQImage::ScaleMin), 0); return new TQPixmap(entryPix); } |