coverity#1242527 Arguments in wrong order

doesn't seem to matter too much, I guess its only the top left
corner that really matters for tooltips.

This is the vertical scrollbar as used in e.g. writer->view->datasources

Change-Id: I5bd6e563a9f02edae9ca166f073556c55878826c
This commit is contained in:
Caolán McNamara
2014-11-14 17:11:26 +00:00
parent e170f08587
commit 5a9b87fc0f

View File

@@ -726,7 +726,7 @@ void BrowserScrollBar::Tracking( const TrackingEvent& rTEvt )
else
aTip += OUString::number(GetRangeMax());
Rectangle aRect( GetPointerPosPixel(), Size( GetTextHeight(), GetTextWidth( aTip ) ) );
Rectangle aRect(GetPointerPosPixel(), Size(GetTextWidth(aTip), GetTextHeight()));
if ( _nTip )
Help::UpdateTip( _nTip, this, aRect, aTip );
else