CreateTimerDialogBJ

Parameters
ttimer
titlestring
comment
patch

1.00

Source
Blizzard.j (suggest an edit or discuss on Github)
return type
timerdialog
Source code
function CreateTimerDialogBJ takes timer t, string title returns timerdialog
    set bj_lastCreatedTimerDialog = CreateTimerDialog(t)
    call TimerDialogSetTitle(bj_lastCreatedTimerDialog, title)
    call TimerDialogDisplay(bj_lastCreatedTimerDialog, true)
    return bj_lastCreatedTimerDialog
endfunction