diff options
Diffstat (limited to 'lib/egg/egg-toolbars-model.h')
-rw-r--r-- | lib/egg/egg-toolbars-model.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/egg/egg-toolbars-model.h b/lib/egg/egg-toolbars-model.h index b93e7c1f7..baca4862c 100644 --- a/lib/egg/egg-toolbars-model.h +++ b/lib/egg/egg-toolbars-model.h @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * + * * $Id$ */ @@ -22,6 +22,7 @@ #define EGG_TOOLBARS_MODEL_H #include <glib.h> +#include <glib-object.h> #include <gdk/gdk.h> G_BEGIN_DECLS @@ -97,19 +98,19 @@ typedef struct EggToolbarsItemType EggToolbarsItemType; struct EggToolbarsItemType { GdkAtom type; - + gboolean (* has_data) (EggToolbarsItemType *type, const char *name); char * (* get_data) (EggToolbarsItemType *type, const char *name); - + char * (* new_name) (EggToolbarsItemType *type, const char *data); char * (* get_name) (EggToolbarsItemType *type, const char *data); }; -GType egg_tb_model_flags_get_type (void); +GType egg_tb_model_flags_get_type (void); GType egg_toolbars_model_get_type (void); EggToolbarsModel *egg_toolbars_model_new (void); gboolean egg_toolbars_model_load_names (EggToolbarsModel *model, |