equal
deleted
inserted
replaced
337 d->mPressedDownButton->setDown(false); |
337 d->mPressedDownButton->setDown(false); |
338 d->mPressedDownButton = 0; |
338 d->mPressedDownButton = 0; |
339 d->mPreviouslyPressedDownButton = d->mPressedDownButton; |
339 d->mPreviouslyPressedDownButton = d->mPressedDownButton; |
340 } |
340 } |
341 HbWidget::hideEvent(event); |
341 HbWidget::hideEvent(event); |
|
342 } |
|
343 |
|
344 QRectF HbToolBar::boundingRect() const |
|
345 { |
|
346 QRectF orginalRect(HbWidget::boundingRect()); |
|
347 orginalRect.setTop(orginalRect.top() + 1.0); |
|
348 return orginalRect; |
342 } |
349 } |
343 |
350 |
344 /*! |
351 /*! |
345 \reimp |
352 \reimp |
346 */ |
353 */ |
385 if (d->moreExtensionButton) { |
392 if (d->moreExtensionButton) { |
386 d->moreExtensionButton->updatePrimitives(); |
393 d->moreExtensionButton->updatePrimitives(); |
387 } |
394 } |
388 } |
395 } |
389 |
396 |
|
397 void HbToolBar::polish(HbStyleParameters ¶ms) |
|
398 { |
|
399 Q_D(HbToolBar); |
|
400 HbWidget::polish(params); |
|
401 if (d->mDoLayoutPending) { |
|
402 d->doLayout(); |
|
403 } |
|
404 } |
|
405 |
390 #include "moc_hbtoolbar.cpp" |
406 #include "moc_hbtoolbar.cpp" |