~ubuntu-branches/debian/jessie/libbonoboui/jessie

« back to all changes in this revision

Viewing changes to bonobo/bonobo-ui-component.h

  • Committer: Package Import Robot
  • Author(s): Josselin Mouette
  • Date: 2013-12-29 15:10:19 UTC
  • mfrom: (1.2.5) (6.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20131229151019-nhf3wo82d4jtk7jk
Tags: 2.24.5-2
* Add missing build-dependency on gtk-doc-tools.
* Fix copyright file. Closes: #733487.

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
        gpointer       dummy;
217
217
} BonoboUIVerb;
218
218
 
219
 
#define BONOBO_UI_VERB(name,cb)                  { (name), (cb), NULL   }
220
 
#define BONOBO_UI_VERB_DATA(name,cb,data)        { (name), (cb), (data) }
221
 
#define BONOBO_UI_UNSAFE_VERB(name,cb)           { (name), ((BonoboUIVerbFn)(cb)), NULL   }
222
 
#define BONOBO_UI_UNSAFE_VERB_DATA(name,cb,data) { (name), ((BonoboUIVerbFn)(cb)), (data) }
223
 
#define BONOBO_UI_VERB_END                       { NULL, NULL, NULL }
 
219
#define BONOBO_UI_VERB(name,cb)                  { (name), (cb), NULL, NULL   }
 
220
#define BONOBO_UI_VERB_DATA(name,cb,data)        { (name), (cb), (data), NULL }
 
221
#define BONOBO_UI_UNSAFE_VERB(name,cb)           { (name), ((BonoboUIVerbFn)(cb)), NULL, NULL   }
 
222
#define BONOBO_UI_UNSAFE_VERB_DATA(name,cb,data) { (name), ((BonoboUIVerbFn)(cb)), (data), NULL }
 
223
#define BONOBO_UI_VERB_END                       { NULL, NULL, NULL, NULL }
224
224
 
225
225
void    bonobo_ui_component_add_verb_list           (BonoboUIComponent  *component,
226
226
                                                     const BonoboUIVerb *list);