TabHost.addTab - multiple declarations

Function TabHost.addTab

add new tab by id and label string

TabHost addTab(
  Widget widget,
  dstring label,
  string iconId = null,
  bool enableCloseButton = false,
  dstring tooltipText = null
);

Function TabHost.addTab

add new tab by id and label string resource id

TabHost addTab(
  Widget widget,
  string labelResourceId,
  string iconId = null,
  bool enableCloseButton = false,
  dstring tooltipText = null
);

Function TabHost.addTab

add new tab by id and label UIString

TabHost addTab(
  Widget widget,
  UIString label,
  string iconId = null,
  bool enableCloseButton = false,
  dstring tooltipText = null
);