Update Spanish translation
[gnumeric.git] / src / gnm-cell-combo.h
blob284553c08062cafc8f0ef177c1dde7c787a46c3a
1 #ifndef _GNM_CELL_COMBO_H_
2 # define _GNM_CELL_COMBO_H_
4 #include <sheet-object-impl.h>
6 G_BEGIN_DECLS
8 typedef struct {
9 SheetObject parent;
11 SheetView *sv;
12 } GnmCellCombo;
14 typedef struct {
15 SheetObjectClass parent_class;
16 } GnmCellComboClass;
18 #define GNM_CELL_COMBO_TYPE (gnm_cell_combo_get_type ())
19 #define GNM_CELL_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNM_CELL_COMBO_TYPE, GnmCellCombo))
21 GType gnm_cell_combo_get_type (void);
23 G_END_DECLS
25 #endif /* _GNM_CELL_COMBO_H_ */