Window.showMessageBox - multiple declarations

Function Window.showMessageBox

Show message box with specified title and message (title and message as dstring)

void showMessageBox(
  dstring title,
  dstring message,
  const(Action)[] actions = [ACTION_OK],
  int defaultActionIndex = 0,
  bool delegate(const(Action)) handler = cast(bool delegate(const(Action) result))null
);

Function Window.showMessageBox

Show message box with specified title and message (title and message as UIString)

void showMessageBox(
  UIString title,
  UIString message,
  const(Action)[] actions = [ACTION_OK],
  int defaultActionIndex = 0,
  bool delegate(const(Action)) handler = cast(bool delegate(const(Action) result))null
);