Fix In file included from export_dissection_dialog.cpp:24:0: export_dissection_dialog.h:66:34: error: field 'export_type_map_' has incomplete type export_dissection_dialog.cpp: In constructor 'ExportDissectionDialog::ExportDissectionDialog(QWidget*, capture_file*, export_type_e)': export_dissection_dialog.cpp:80:5: error: 'export_type_map_' was not declared in this scope export_dissection_dialog.cpp: In member function 'void ExportDissectionDialog::exportTypeChanged(QString)': export_dissection_dialog.cpp:214:20: error: 'export_type_map_' was not declared in this scope

Missing <QMap> include in export_disssection_dialog.h (in my Ubuntu Box with Qt 4.7.4 ?)

svn path=/trunk/; revision=45574
This commit is contained in:
Alexis La Goutte 2012-10-16 07:46:58 +00:00
parent 3a5c028a0b
commit a7763680ac
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@
#endif // Q_WS_WIN
#include <QFileDialog>
#include <QMap>
class ExportDissectionDialog : public QFileDialog
{