aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_chunk_stat_dlg.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 19:49:45 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-10 19:49:45 +0000
commitf62d622cd86c0bac77749b43dc21c7a65cff1a6d (patch)
tree36baba4cd69a9a59a0e887363013f51d2e4d9008 /gtk/sctp_chunk_stat_dlg.c
parent33b036f494d02bd65f1df6a87f6b136fe29fcebf (diff)
removed tons of MSVC const related warnings.
This might at some places interfere with the changes for gcc4, we might have to negotiate in that case :-) Please note that a lot of these warnings were GTK1.x related only! git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15286 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/sctp_chunk_stat_dlg.c')
-rw-r--r--gtk/sctp_chunk_stat_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/sctp_chunk_stat_dlg.c b/gtk/sctp_chunk_stat_dlg.c
index 023960d7ee..2a4185be45 100644
--- a/gtk/sctp_chunk_stat_dlg.c
+++ b/gtk/sctp_chunk_stat_dlg.c
@@ -286,11 +286,11 @@ gtk_sctpstat_dlg(struct sctp_udata *u_data, unsigned int direction)
ascend_pm = gdk_pixmap_create_from_xpm_d(scrolledwindow1->window,
&ascend_bm,
&win_style->bg[GTK_STATE_NORMAL],
- (const gchar **)clist_ascend_xpm);
+ (gchar **)clist_ascend_xpm);
descend_pm = gdk_pixmap_create_from_xpm_d(scrolledwindow1->window,
&descend_bm,
&win_style->bg[GTK_STATE_NORMAL],
- (const gchar **)clist_descend_xpm);
+ (gchar **)clist_descend_xpm);
for (i=0; i<NUM_COLS; i++)
{
col_arrows[i].table = gtk_table_new(2, 2, FALSE);