diff options
author | Gerald Combs <gerald@wireshark.org> | 2012-12-29 02:58:56 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2012-12-29 02:58:56 +0000 |
commit | cce0d8451ca8c73cb0da04954395ed719dd696fc (patch) | |
tree | 2e1a86ca0dcb9c9496b5b0aeb72ea26122bb449a /ui | |
parent | 94d8ae945b8d71382c7daf51501ad5291e08e240 (diff) | |
download | wireshark-cce0d8451ca8c73cb0da04954395ed719dd696fc.tar.gz wireshark-cce0d8451ca8c73cb0da04954395ed719dd696fc.tar.bz2 wireshark-cce0d8451ca8c73cb0da04954395ed719dd696fc.zip |
Add profile_dialog.
svn path=/trunk/; revision=46837
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt/CMakeLists.txt | 3 | ||||
-rw-r--r-- | ui/qt/Makefile.am | 5 | ||||
-rw-r--r-- | ui/qt/Makefile.common | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/ui/qt/CMakeLists.txt b/ui/qt/CMakeLists.txt index 8dbcb09685..708881470d 100644 --- a/ui/qt/CMakeLists.txt +++ b/ui/qt/CMakeLists.txt @@ -50,6 +50,7 @@ set(QTSHARK_H_SRC packet_list_model.h packet_range_group_box.h print_dialog.h + profile_dialog.h progress_bar.h proto_tree.h recent_file_status.h @@ -96,6 +97,7 @@ set(QTSHARK_CPP_SRC packet_list_record.cpp packet_range_group_box.cpp print_dialog.cpp + profile_dialog.cpp progress_bar.cpp proto_tree.cpp qt_ui_utils.cpp @@ -123,6 +125,7 @@ set(QTSHARK_UI packet_format_group_box.ui packet_range_group_box.ui print_dialog.ui + profile_dialog.ui search_frame.ui splash_overlay.ui time_shift_dialog.ui diff --git a/ui/qt/Makefile.am b/ui/qt/Makefile.am index 5d6b661447..9d7acf958f 100644 --- a/ui/qt/Makefile.am +++ b/ui/qt/Makefile.am @@ -121,6 +121,11 @@ print_dialog.h: ui_print_dialog.h ui_print_dialog.h: print_dialog.ui uic $< -o $@ +profile_dialog.h: ui_profile_dialog.h + +ui_profile_dialog.h: profile_dialog.ui + uic $< -o $@ + search_frame.h: ui_search_frame.h ui_search_frame.h: search_frame.ui diff --git a/ui/qt/Makefile.common b/ui/qt/Makefile.common index a4420bc3fb..fc65933211 100644 --- a/ui/qt/Makefile.common +++ b/ui/qt/Makefile.common @@ -40,6 +40,7 @@ GENERATED_NODIST_HEADER_FILES = \ ui_packet_format_group_box.h \ ui_packet_range_group_box.h \ ui_print_dialog.h \ + ui_profile_dialog.h \ ui_search_frame.h \ ui_splash_overlay.h \ ui_time_shift_dialog.h @@ -102,6 +103,7 @@ MOC_HDRS = \ packet_list_model.h \ packet_range_group_box.h \ print_dialog.h \ + profile_dialog.h \ progress_bar.h \ proto_tree.h \ recent_file_status.h \ @@ -183,6 +185,7 @@ WIRESHARK_QT_SRC = \ packet_list_record.cpp \ packet_range_group_box.cpp \ print_dialog.cpp \ + profile_dialog.cpp \ progress_bar.cpp \ proto_tree.cpp \ qt_ui_utils.cpp \ |