aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/wireshark_application.cpp
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2015-08-12 14:51:29 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2015-08-12 12:52:16 +0000
commit5a926946f434bc4fbd63f8e815482c95b6173a3e (patch)
treeb95b6cebd6724901500e07b318d51b341338c36f /ui/qt/wireshark_application.cpp
parentdc7443fcc9fe499a8e2c9f0cd09cf85e89b22beb (diff)
Initialize is_reloading_lua at startup
Change-Id: I211e0f4b86cff1c311d4ae67cbb47de14846144f Reviewed-on: https://code.wireshark.org/review/9997 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt/wireshark_application.cpp')
-rw-r--r--ui/qt/wireshark_application.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt/wireshark_application.cpp b/ui/qt/wireshark_application.cpp
index 5c9f4e318f..b7c44f8cdb 100644
--- a/ui/qt/wireshark_application.cpp
+++ b/ui/qt/wireshark_application.cpp
@@ -477,7 +477,8 @@ void WiresharkApplication::itemStatusFinished(const QString filename, qint64 siz
WiresharkApplication::WiresharkApplication(int &argc, char **argv) :
QApplication(argc, argv),
- initialized_(false)
+ initialized_(false),
+ is_reloading_lua_(false)
{
wsApp = this;
setApplicationName("Wireshark");