summaryrefslogtreecommitdiff
path: root/ui/qt/export_dissection_dialog.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-08-29 22:15:40 +0000
committerGerald Combs <gerald@wireshark.org>2013-08-29 22:15:40 +0000
commitf1ceee4a2cf3d6f02c7e7923a65652c02ba3973b (patch)
tree933df7e1d102d68df44af6e76856f23681cbd0a7 /ui/qt/export_dissection_dialog.cpp
parentae83d08f30afb3de625a1e678c6817485af4d344 (diff)
downloadwireshark-f1ceee4a2cf3d6f02c7e7923a65652c02ba3973b.tar.gz
Add support for Qt5 (tested with 5.1.1).
svn path=/trunk/; revision=51580
Diffstat (limited to 'ui/qt/export_dissection_dialog.cpp')
-rw-r--r--ui/qt/export_dissection_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/export_dissection_dialog.cpp b/ui/qt/export_dissection_dialog.cpp
index 80d10160cc..592f9e1f69 100644
--- a/ui/qt/export_dissection_dialog.cpp
+++ b/ui/qt/export_dissection_dialog.cpp
@@ -201,7 +201,7 @@ int ExportDissectionDialog::exec()
return retval;
#else // Q_OS_WIN
- win32_export_file(parentWidget()->effectiveWinId(), cap_file_, export_type_);
+ win32_export_file((HWND)parentWidget()->effectiveWinId(), cap_file_, export_type_);
return QDialog::Accepted;
#endif // Q_OS_WIN
}