From kde-commits Thu Sep 30 22:35:43 2004 From: Nicolas Goutte Date: Thu, 30 Sep 2004 22:35:43 +0000 To: kde-commits Subject: kdelibs/kdeui Message-Id: <20040930223543.3030F126E1 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109658374832353 CVS commit by goutte: Add the character to the tooltip, in the current font and bigger (at least compared to the default size of the dialog). (If I remember well, this might be a reported bug, however I have not the bug number at hand.) M +1 -1 kcharselect.cpp 1.38 --- kdelibs/kdeui/kcharselect.cpp #1.37:1.38 @@ -352,5 +352,5 @@ void KCharSelectTable::setToolTips() QString s; s.sprintf( "%04X", uint( uni ) ); - QToolTip::add(this, r, i18n( "Character","Unicode code point: U+%1
(In decimal: %2)
(Character: %3)
" ).arg( s ).arg( uni ).arg( QChar( uni ) ) ); + QToolTip::add(this, r, i18n( "Character","%2
Unicode code point: U+%3
(In decimal: %4)
(Character: %5)
" ).arg( vFont ).arg( QChar( uni ) ).arg( s ).arg( uni ).arg( QChar( uni ) ) ); } }