diff options
| author | 2007-03-02 15:23:07 +0000 | |
|---|---|---|
| committer | 2007-03-02 15:23:07 +0000 | |
| commit | f92f35a059909fd26540e1a6b017679e969e5e15 (patch) | |
| tree | 4adedc057303292863f2b47487746c5c7c1762f0 /src/modules/addon | |
| parent | QT3 version compilation fix (diff) | |
| download | KVIrc-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.cpp | 2 |
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);
|
