aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/capture_file.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-12-20 14:08:04 -0800
committerGerald Combs <gerald@wireshark.org>2014-12-20 22:18:01 +0000
commitd11e94b9dcafb559046a37d6ef26c364844943f9 (patch)
treecd3cdf0431350203ad82befad53d48f8e8fc997c /ui/qt/capture_file.cpp
parentb4e90bdc8e5db01a3f38fab97cc1e341288d7c0b (diff)
Remove debugging code.
Change-Id: If3a64a6914ae8ce2521c85766df6f733a13ca7e1 Reviewed-on: https://code.wireshark.org/review/5926 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/capture_file.cpp')
-rw-r--r--ui/qt/capture_file.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/qt/capture_file.cpp b/ui/qt/capture_file.cpp
index fc25f6424f..9aa1ee3efe 100644
--- a/ui/qt/capture_file.cpp
+++ b/ui/qt/capture_file.cpp
@@ -41,8 +41,6 @@ capture_file cfile;
// - Base filename
// - Full filename
-#include <QDebug>
-
CaptureFile::CaptureFile(QObject *parent, capture_file *cap_file) :
QObject(parent),
cap_file_(cap_file)
@@ -89,12 +87,10 @@ void CaptureFile::captureCallback(gint event, capture_session *cap_session, gpoi
void CaptureFile::captureFileEvent(int event, gpointer data)
{
- qDebug() << "=cfe" << event << data;
switch(event) {
case(cf_cb_file_opened):
g_log(LOG_DOMAIN_MAIN, G_LOG_LEVEL_DEBUG, "Callback: Opened");
cap_file_ = (capture_file *) data;
- qDebug() << "=cfe fo" << cap_file_;
emit captureFileOpened();
break;
case(cf_cb_file_closing):
@@ -103,7 +99,6 @@ void CaptureFile::captureFileEvent(int event, gpointer data)
break;
case(cf_cb_file_closed):
g_log(LOG_DOMAIN_MAIN, G_LOG_LEVEL_DEBUG, "Callback: Closed");
- qDebug() << "=cfe fc" << cap_file_;
emit captureFileClosed();
cap_file_ = NULL;
break;
@@ -152,7 +147,6 @@ void CaptureFile::captureEvent(int event, capture_session *cap_session)
Q_UNUSED(event)
Q_UNUSED(cap_session)
#else
- qDebug() << "=ce" << event << cap_session->cf;
switch(event) {
case(capture_cb_capture_prepared):
g_log(LOG_DOMAIN_MAIN, G_LOG_LEVEL_DEBUG, "Callback: capture prepared");