Commit 0204c401ae2b0a3aab1b4b91c6326693c6d3513d

Authored by perry.werneck@gmail.com
1 parent 32a1451c
Exists in master and in 1 other branch develop

Ajustes para a nova caixa de diálogo

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
widget.c
... ... @@ -1552,6 +1552,12 @@ int v3270_set_session_color_type(GtkWidget *widget, unsigned short colortype)
1552 1552 return lib3270_set_color_type(GTK_V3270(widget)->host,colortype);
1553 1553 }
1554 1554  
  1555 +int v3270_set_host_type(GtkWidget *widget, const char *name)
  1556 +{
  1557 + g_return_val_if_fail(GTK_IS_V3270(widget),EFAULT);
  1558 + return lib3270_set_host_type(GTK_V3270(widget)->host,name);
  1559 +}
  1560 +
1555 1561 unsigned short v3270_get_session_color_type(GtkWidget *widget)
1556 1562 {
1557 1563 g_return_val_if_fail(GTK_IS_V3270(widget),-1);
... ...