aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rtp_player.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 04:42:26 +0000
commit96a24cc79f7a32851cc2005603e32633389043a3 (patch)
tree62c91332176b091409c8f06937bbce734155981e /ui/gtk/rtp_player.c
parenta6e56df8b683bb696655c331f64f22abc8f36af4 (diff)
Fix spelling/typos found using a list of commonly misspelled words.
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
Diffstat (limited to 'ui/gtk/rtp_player.c')
-rw-r--r--ui/gtk/rtp_player.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/gtk/rtp_player.c b/ui/gtk/rtp_player.c
index e57f1f0002..610de8dc1b 100644
--- a/ui/gtk/rtp_player.c
+++ b/ui/gtk/rtp_player.c
@@ -215,7 +215,7 @@ typedef struct _rtp_channel_info {
/* defines a RTP packet */
typedef struct _rtp_packet {
struct _rtp_info *info; /* the RTP dissected info */
- double arrive_offset; /* arrive offset time since the begining of the stream in ms */
+ double arrive_offset; /* arrive offset time since the beginning of the stream in ms */
guint8* payload_data;
} rtp_packet_t;
@@ -974,7 +974,7 @@ draw_channel_cursor(rtp_channel_info_t *rci, guint32 start_index)
cairo_fill (cr);
#if GTK_CHECK_VERSION(2,22,0)
- cairo_set_source_surface (cr, rci->surface, idx/MULT, 0);
+ cairo_set_source_surface (cr, rci->surface, idx/MULT, 0);
#else
gdk_cairo_set_source_pixmap (cr, rci->pixmap,idx/MULT, 0);
#endif
@@ -1358,7 +1358,7 @@ static void channel_draw(rtp_channel_info_t* rci)
} else if (status == S_SILENCE) {
draw_color_p = &white_color;
} else {
- draw_color_p = &black_color;
+ draw_color_p = &black_color;
}
/* if silence added by Wireshark, graphically show it with letter to indicate why */
@@ -1506,7 +1506,7 @@ static void channel_draw(rtp_channel_info_t* rci)
} else if (status == S_SILENCE) {
draw_color_p = &white_color;
} else {
- draw_color_p = &black_color;
+ draw_color_p = &black_color;
}
/* if silence added by Wireshark, graphically show it with letter to indicate why */
@@ -1599,7 +1599,7 @@ static gboolean expose_event_channels(GtkWidget *widget, GdkEventExpose *event,
if (gtk_widget_is_drawable(widget)){
cr = gdk_cairo_create (gtk_widget_get_window(widget));
#if GTK_CHECK_VERSION(2,22,0)
- cairo_set_source_surface (cr, rci->surface, 0, 0);
+ cairo_set_source_surface (cr, rci->surface, 0, 0);
#else
gdk_cairo_set_source_pixmap (cr, rci->pixmap, event->area.x, event->area.y);
#endif