JANITORIAL: Simply use *x instead of *x.get() on smart pointers.

This commit is contained in:
Christoph Mallon 2012-03-13 14:53:40 +01:00 committed by Alyssa Milburn
parent 612bfe4092
commit e40ba4c135
15 changed files with 231 additions and 241 deletions

View file

@ -360,7 +360,7 @@ int GUI_v2::processButtonList(Button *buttonList, uint16 inputFlag, int8 mouseWh
if (buttonList->buttonCallback) {
_vm->removeInputTop();
if ((*buttonList->buttonCallback.get())(buttonList))
if ((*buttonList->buttonCallback)(buttonList))
break;
}