aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2019-07-11 11:37:17 +0200
committerAnders Broman <a.broman58@gmail.com>2019-07-11 10:24:49 +0000
commit5dd422f06d1e7879abbd9f4631a5e1372b073e05 (patch)
treec7f490348d6050f41f8b0447aef1e136ccb9930a /ui
parent3589de9b5ad48303d12e6e94de4ae590fdba697b (diff)
Qt: remove semicolon from profile model.
This causes an error due to -Werror,-Wc++98-compat-extra-semi. ../ui/qt/models/profile_model.h:21:42: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] Q_DECLARE_LOGGING_CATEGORY(profileLogger); ^ 1 error generated. Change-Id: I5c04f431ffc08e90efbee5763e0f7c9b10a039d2 Reviewed-on: https://code.wireshark.org/review/33893 Petri-Dish: Dario Lombardo <lomato@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/models/profile_model.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/models/profile_model.h b/ui/qt/models/profile_model.h
index a5de875599..ab3320ef4e 100644
--- a/ui/qt/models/profile_model.h
+++ b/ui/qt/models/profile_model.h
@@ -18,7 +18,7 @@
#include <QSortFilterProxyModel>
#include <QLoggingCategory>
-Q_DECLARE_LOGGING_CATEGORY(profileLogger);
+Q_DECLARE_LOGGING_CATEGORY(profileLogger)
class ProfileSortModel : public QSortFilterProxyModel
{