aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/addon
diff options
context:
space:
mode:
authorGravatar Noldor2007-03-02 15:23:07 +0000
committerGravatar Noldor2007-03-02 15:23:07 +0000
commitf92f35a059909fd26540e1a6b017679e969e5e15 (patch)
tree4adedc057303292863f2b47487746c5c7c1762f0 /src/modules/addon
parentQT3 version compilation fix (diff)
downloadKVIrc-f92f35a059909fd26540e1a6b017679e969e5e15.tar.gz
KVIrc-f92f35a059909fd26540e1a6b017679e969e5e15.tar.bz2
KVIrc-f92f35a059909fd26540e1a6b017679e969e5e15.zip
another QT3 fix
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@403 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon')
-rw-r--r--src/modules/addon/managementdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/addon/managementdialog.cpp b/src/modules/addon/managementdialog.cpp
index 9229140a2..eb9dec585 100644
--- a/src/modules/addon/managementdialog.cpp
+++ b/src/modules/addon/managementdialog.cpp
@@ -119,7 +119,7 @@ void KviScriptAddonListViewItem::setup()
int iHeight = m_pText->size().height() + (2 * LVI_BORDER);
#else
m_pText->setWidth(iWidth);
- int iHeight = m_pText->textHeight() + (2 * LVI_BORDER);
+ int iHeight = m_pText->height() + (2 * LVI_BORDER);
#endif
if(iHeight < (LVI_ICON_SIZE + (2 * LVI_BORDER)))iHeight = LVI_ICON_SIZE + (2 * LVI_BORDER);
setHeight(iHeight+2);