Fix initialization order.

Change-Id: I5eb59108860c9282d798aedfe40eccf1ee85658d
Reviewed-on: https://code.wireshark.org/review/10805
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2015-10-05 09:12:43 -07:00
parent 0eeeab7c5e
commit 31aefa4bd9
1 changed files with 2 additions and 2 deletions

View File

@ -482,8 +482,8 @@ WiresharkApplication::WiresharkApplication(int &argc, char **argv) :
QApplication(argc, argv),
initialized_(false),
is_reloading_lua_(false),
active_captures_(0),
if_notifier_(NULL)
if_notifier_(NULL),
active_captures_(0)
{
wsApp = this;
setApplicationName("Wireshark");