Hi,
here's a small patch which changes the type of `BonoboZoomLevel'
from float into a structure
===
struct ZoomLevel {
float zoom_level;
string label;
};
typedef sequence<ZoomLevel> ZoomLevelList;
===
There's also a new BonoboZoomLevel type
===
typedef struct _BonoboZoomLevel BonoboZoomLevel;
struct _BonoboZoomLevel {
float zoom_level;
const gchar *label;
};
===
Attachment:
diff
Description: Binary data
What do yuo think ? -- Martin Baulig martin gnome org (private) baulig suse de (work)