aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/voip_calls_dialog.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-02-12 15:35:59 -0800
committerGerald Combs <gerald@wireshark.org>2015-02-13 02:31:16 +0000
commit6e88978fd98cf0dd032245c1b68b5a12cd94e405 (patch)
treed4816d481f84aaf50f727395215c1ce11baa365f /ui/qt/voip_calls_dialog.h
parenta5652c7257835db3f6fce01926d53b236be53405 (diff)
Qt: More #include → forward declarations.
Change-Id: Ib6de71f801cd3053374b6c867370acd594dcd396 Reviewed-on: https://code.wireshark.org/review/7089 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/voip_calls_dialog.h')
-rw-r--r--ui/qt/voip_calls_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/voip_calls_dialog.h b/ui/qt/voip_calls_dialog.h
index c3d4e51e68..439ed3a9a2 100644
--- a/ui/qt/voip_calls_dialog.h
+++ b/ui/qt/voip_calls_dialog.h
@@ -26,14 +26,14 @@
#include <glib.h>
-#include "cfile.h"
-
#include "ui/voip_calls.h"
#include "wireshark_dialog.h"
#include <QMenu>
+struct _capture_file;
+
class QAbstractButton;
class QTreeWidgetItem;
@@ -54,7 +54,7 @@ public slots:
signals:
void updateFilter(QString &filter, bool force = false);
- void captureFileChanged(capture_file *cf);
+ void captureFileChanged(struct _capture_file *cf);
void goToPacket(int packet_num);
protected: