brooooooooken pipe.

This commit is contained in:
Kristian Rietveld 2003-09-03 19:57:05 +00:00
parent 9538b6e57c
commit eccc733f29
15 changed files with 18 additions and 18 deletions

View File

@ -1290,7 +1290,7 @@ gif_get_next_step (GifContext *context)
}
if (c == '!') {
/* Check the extention */
/* Check the extension */
gif_set_get_extension (context);
return 0;
}

View File

@ -486,7 +486,7 @@ gtk_extra_sources = \
gtkmarshal.list
#
# setup GTK+ sources and their dependancies
# setup GTK+ sources and their dependencies
#
MAINTAINERCLEANFILES = $(gtk_built_sources) $(stamp_files)
EXTRA_HEADERS =
@ -496,7 +496,7 @@ EXTRA_DIST += $(gtk_built_sources)
#
# rules to generate built sources
#
# setup autogeneration dependancies
# setup autogeneration dependencies
gen_sources = xgen-gdef xgen-gtbh xgen-gtic xgen-gmh xgen-gmc xgen-gmlh xgen-gmlc
CLEANFILES = $(gen_sources)

View File

@ -49,7 +49,7 @@
/***************************************************************************/
/* The following date routines are taken from the lib_date package. Keep
* them seperate in case we want to update them if a newer lib_date comes
* them separate in case we want to update them if a newer lib_date comes
* out with fixes. */
typedef unsigned int N_int;

View File

@ -2498,7 +2498,7 @@ set_cell_contents (GtkCList *clist,
old_mask = GTK_CELL_PIXTEXT (clist_row->cell[column])->mask;
break;
case GTK_CELL_WIDGET:
/* unimplimented */
/* unimplemented */
break;
default:
break;

View File

@ -2969,7 +2969,7 @@ set_cell_contents (GtkCList *clist,
old_mask = GTK_CELL_PIXTEXT (clist_row->cell[column])->mask;
break;
case GTK_CELL_WIDGET:
/* unimplimented */
/* unimplemented */
break;
default:

View File

@ -3441,7 +3441,7 @@ gtk_drag_abort_timeout (gpointer data)
* @current_y: current Y coordinate
*
* Checks to see if a mouse drag starting at (@start_x, @start_y) and ending
* at (@current_x, @current_y) has passed the GTK+ drag threshhold, and thus
* at (@current_x, @current_y) has passed the GTK+ drag threshold, and thus
* should trigger the beginning of a drag-and-drop operation.
*
* Return Value: %TRUE if the drag threshold has been passed.

View File

@ -3420,7 +3420,7 @@ gtk_entry_new (void)
*
* Creates a new #GtkEntry widget with the given maximum length.
*
* Note: the existance of this function is inconsistent
* Note: the existence of this function is inconsistent
* with the rest of the GTK+ API. The normal setup would
* be to just require the user to make an extra call
* to gtk_entry_set_max_length() instead. It is not

View File

@ -1309,7 +1309,7 @@ gtk_handle_box_motion (GtkWidget *widget,
gdk_window_show (hb->float_window);
hb->float_window_mapped = TRUE;
#if 0
/* this extra move is neccessary if we use decorations, or our
/* this extra move is necessary if we use decorations, or our
* window manager insists on decorations.
*/
gdk_display_sync (gtk_widget_get_display (widget));

View File

@ -360,7 +360,7 @@ gtk_item_factory_add_item (GtkItemFactory *ifactory,
if (GTK_IS_MENU (widget))
gtk_menu_set_accel_group ((GtkMenu*) widget, ifactory->accel_group);
/* connect callback if neccessary
/* connect callback if necessary
*/
if (callback)
{

View File

@ -2116,7 +2116,7 @@ gtk_menu_key_press (GtkWidget *widget,
/* Modify the accelerators */
if (can_change_accels &&
menu_shell->active_menu_item &&
GTK_BIN (menu_shell->active_menu_item)->child && /* no seperators */
GTK_BIN (menu_shell->active_menu_item)->child && /* no separators */
GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu == NULL && /* no submenus */
(delete || gtk_accelerator_valid (accel_key, accel_mods)))
{

View File

@ -5337,7 +5337,7 @@ gtk_notebook_reorder_child (GtkNotebook *notebook,
gtk_widget_freeze_child_notify (child);
/* Move around the menu items if necesary */
/* Move around the menu items if necessary */
gtk_notebook_child_reordered (notebook, page);
gtk_widget_child_notify (child, "tab_pack");
gtk_widget_child_notify (child, "position");

View File

@ -1382,7 +1382,7 @@ gtk_range_scroll_event (GtkWidget *widget,
/* Policy DELAYED makes sense with scroll events,
* but DISCONTINUOUS doesn't, so we update immediately
* for DISCONTINOUS
* for DISCONTINUOUS
*/
if (range->update_policy == GTK_UPDATE_DISCONTINUOUS)
gtk_range_update_value (range);
@ -1658,7 +1658,7 @@ gtk_range_move_slider (GtkRange *range,
/* Policy DELAYED makes sense with key events,
* but DISCONTINUOUS doesn't, so we update immediately
* for DISCONTINOUS
* for DISCONTINUOUS
*/
if (range->update_policy == GTK_UPDATE_DISCONTINUOUS)
gtk_range_update_value (range);

View File

@ -97,7 +97,7 @@ struct _GtkRcStyleClass
GtkRcStyle * (*create_rc_style) (GtkRcStyle *rc_style);
/* Fill in engine specific parts of GtkRcStyle by parsing contents
* of brackets. Returns G_TOKEN_NONE if succesful, otherwise returns
* of brackets. Returns G_TOKEN_NONE if successful, otherwise returns
* the token it expected but didn't get.
*/
guint (*parse) (GtkRcStyle *rc_style,

View File

@ -595,9 +595,9 @@ gtk_tree_remove_item (GtkTree *container,
g_list_free (item_list);
}
/* used by gtk_tree_remove_items to make the function independant of
/* used by gtk_tree_remove_items to make the function independent of
order in list of items to remove.
Sort item bu depth in tree */
Sort item by depth in tree */
static gint
gtk_tree_sort_item_by_depth(GtkWidget* a, GtkWidget* b)
{

View File

@ -169,7 +169,7 @@ struct _GtkArg
/* argument value access macros, these must not contain casts,
* to allow the usage of these macros in combination with the
* adress operator, e.g. &GTK_VALUE_CHAR (*arg)
* address operator, e.g. &GTK_VALUE_CHAR (*arg)
*/
#define GTK_VALUE_CHAR(a) ((a).d.char_data)
#define GTK_VALUE_UCHAR(a) ((a).d.uchar_data)