diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:56:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 15:15:54 +0900 |
commit | 22da7013fff03b0a938a6048633369d1b2041a52 (patch) | |
tree | 25c501c5d441f3fc2b752c2961f8fc9cc43ef9cf /akregator/src | |
parent | 6efcb28ef7795906d41c8bff80b0ef3dd57ae102 (diff) | |
download | tdepim-22da7013fff03b0a938a6048633369d1b2041a52.tar.gz tdepim-22da7013fff03b0a938a6048633369d1b2041a52.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3b66617d9d5f343c30a87381720db2fc835ce52b)
Diffstat (limited to 'akregator/src')
-rw-r--r-- | akregator/src/tabwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/akregator/src/tabwidget.cpp b/akregator/src/tabwidget.cpp index 76c8b1980..eadab090e 100644 --- a/akregator/src/tabwidget.cpp +++ b/akregator/src/tabwidget.cpp @@ -183,7 +183,7 @@ uint TabWidget::tabBarWidthForMaxChars( uint maxLength ) if ( tab->iconSet() ) iw = tab->iconSet()->pixmap( TQIconSet::Small, TQIconSet::Normal ).width() + 4; - x += ( tabBar()->style().tqsizeFromContents( TQStyle::CT_TabBarTab, this, TQSize( TQMAX( lw + hframe + iw, TQApplication::globalStrut().width() ), 0 ), TQStyleOption( tab ) ) ).width(); + x += ( tabBar()->style().sizeFromContents( TQStyle::CT_TabBarTab, this, TQSize( TQMAX( lw + hframe + iw, TQApplication::globalStrut().width() ), 0 ), TQStyleOption( tab ) ) ).width(); } return x; } |