Move the include of rtp_player.h after the include of stuff it needs,

and include rtp_analysis.h as well, as it declares something else
rtp_player.h needs.

svn path=/trunk/; revision=19146
This commit is contained in:
Guy Harris 2006-09-05 07:58:14 +00:00
parent 5c682dd6ee
commit 2dbe62270f
1 changed files with 7 additions and 6 deletions

View File

@ -42,12 +42,6 @@
#include "register.h"
#if GTK_MAJOR_VERSION >= 2
#ifdef HAVE_LIBPORTAUDIO
#include "rtp_player.h"
#endif /* HAVE_LIBPORTAUDIO */
#endif
#include "graph_analysis.h"
#include "voip_calls_dlg.h"
#include "voip_calls.h"
@ -75,6 +69,13 @@
#include <epan/address.h>
#include <epan/addr_resolv.h>
#ifdef HAVE_LIBPORTAUDIO
#if GTK_MAJOR_VERSION >= 2
#include "rtp_analysis.h"
#include "rtp_player.h"
#endif
#endif /* HAVE_LIBPORTAUDIO */
static const gchar FWD_LABEL_TEXT[] = "Select one call.";
/****************************************************************************/