Commit 78ee41cd authored by claes's avatar claes

wow:CreateList, cancel backcall added

parent e9f37cd6
/*
* Proview $Id: xtt_main.cpp,v 1.7 2008-04-18 08:47:58 claes Exp $
* Proview $Id: xtt_main.cpp,v 1.8 2008-09-18 14:53:54 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -591,7 +591,7 @@ void Xtt::list_opplace()
}
else
// Select oplace from list
wow->CreateList( "Select Operator Place", (char *)texts, opplace_selected_cb, this);
wow->CreateList( "Select Operator Place", (char *)texts, opplace_selected_cb, 0, this);
}
......
/*
* Proview $Id: ge_gtk.cpp,v 1.16 2008-05-13 13:59:02 claes Exp $
* Proview $Id: ge_gtk.cpp,v 1.17 2008-09-18 14:54:14 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -107,7 +107,7 @@ void GeGtk::create_list( char *title, char *texts,
void (action_cb)( void *, char *), void *ctx)
{
CoWowGtk wow( toplevel);
wow.CreateList( title, texts, action_cb, ctx);
wow.CreateList( title, texts, action_cb, 0, ctx);
}
void GeGtk::subgraphs_new()
......
/*
* Proview $Id: xtt_clog_gtk.cpp,v 1.2 2007-01-11 12:00:05 claes Exp $
* Proview $Id: xtt_clog_gtk.cpp,v 1.3 2008-09-18 14:55:59 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
......@@ -310,7 +310,7 @@ void CLogGtk::activate_select_file( GtkWidget *w, gpointer data)
strcat( str[i], clog->clognav->file_list[i].name);
}
clog->wow->CreateList( "Select File", (char *)str, file_selected_cb, clog);
clog->wow->CreateList( "Select File", (char *)str, file_selected_cb, 0, clog);
free( str);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment