aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-07-23 19:47:14 +0000
committerGuy Harris <guy@alum.mit.edu>2013-07-23 19:47:14 +0000
commit3506b0bf53081bba5b45c0bee463240a5f64c663 (patch)
treec7d7344654399422b74ce8fd02942fbe14aae070 /ui
parent52972f605dfe64fb18bcd752fab8476e596853d7 (diff)
downloadwireshark-3506b0bf53081bba5b45c0bee463240a5f64c663.tar.gz
wireshark-3506b0bf53081bba5b45c0bee463240a5f64c663.tar.bz2
wireshark-3506b0bf53081bba5b45c0bee463240a5f64c663.zip
The Qt documentation appears to indicate that you're expected to include
<QPushButton> if you're using a QPushButton, so: 1) adding the include is the right fix, not just a duct-tape fix; 2) <QPushButton>, rather than <qpushbutton.h>, is probably what you're expected to include. (<QPushButton> is, at least in Qt 5.1, a wrapper that just includes <qpushbutton.h>.) svn path=/trunk/; revision=50849
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/summary_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/summary_dialog.cpp b/ui/qt/summary_dialog.cpp
index d86c76b30b..3703759496 100644
--- a/ui/qt/summary_dialog.cpp
+++ b/ui/qt/summary_dialog.cpp
@@ -28,7 +28,7 @@
#include "wireshark_application.h"
#include <QtGui>
-#include <qpushbutton.h>
+#include <QPushButton>
SummaryDialog::SummaryDialog(QWidget *parent) :
QDialog(parent),