aboutsummaryrefslogtreecommitdiffstats
path: root/ui
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08Don't create About window when Wireshark Qt startAlexis La Goutte2-7/+6
svn path=/trunk/; revision=54662
2014-01-08Coverity 280335, 280336Martin Kaiser1-2/+4
check the return value of gtk_tree_selection_get_selected() svn path=/trunk/; revision=54657
2014-01-08Coverity 280334Martin Kaiser1-1/+2
check the return value of gtk_tree_selection_get_selected() if there was no selected item, wireshark would crash but this is very unlikely in practice svn path=/trunk/; revision=54656
2014-01-07Remove svn:executable attribute.Jakub Zawadzki2-0/+0
svn path=/trunk/; revision=54637
2014-01-07include config.h at the top of the file.Jörg Mayer2-2/+5
A used parameter was marked unused. svn path=/trunk/; revision=54629
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-22/+22
svn path=/trunk/; revision=54612
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-19/+19
svn path=/trunk/; revision=54609
2014-01-05Enhance NSIS Windows installer (Wireshark Qt support)Alexis La Goutte2-109/+135
* Add Radiobox to choose File Association (Wireshark GTK or Qt) * Add Checkbox to choose Wireshark Qt icon will be installed (Startup, Desktop...) * Fix unistaller (don't remove all icons...) * ... svn path=/trunk/; revision=54605
2014-01-04Add tooltips for the total number of streams.Gerald Combs3-8/+21
svn path=/trunk/; revision=54585
2014-01-03Update NEWS and Release noteAlexis La Goutte1-10/+6
Revert part of last commit about AUTHORS-SHORT in Windows.... svn path=/trunk/; revision=54577
2014-01-02It is AUTHORS-SHORT.txt in WindowsAlexis La Goutte2-18/+24
Kept comment about dev release (and change logo) Use the some order like Wireshark GTK (Authors before Folders) svn path=/trunk/; revision=54569
2014-01-02Fix wireshark-qt startup coredump under autofoo and Windows: make cmake'sJeff Morriss1-8/+2
VERSION_* macros integers instead of numbers (and treat them as such in ui/qt/about_dialog.cpp). svn path=/trunk/; revision=54563
2014-01-02Add About window for Wireshark QtAlexis La Goutte10-6/+680
svn path=/trunk/; revision=54557
2014-01-02Fix icon in top of Wireshark Qt main windowAlexis La Goutte1-14/+5
svn path=/trunk/; revision=54556
2014-01-02Fix indent always use tabAlexis La Goutte1-215/+215
svn path=/trunk/; revision=54553
2013-12-30Move tcap and camel "persistent data" functionality to the dissectors ↵Michael Mann4-4/+4
themselves instead of being part of epan directory. svn path=/trunk/; revision=54499
2013-12-30Use G_GUINT64_CONSTANT(nn) instead of nnULL in a few places.Bill Meier1-5/+5
svn path=/trunk/; revision=54494
2013-12-29Make arrow down/ up work in gtk again.Jakub Zawadzki1-1/+1
Broken by r54328 g_ascii_isprint() can test only char type and event->keyval is unsigned int. svn path=/trunk/; revision=54492
2013-12-24add ssl detection to proto_get_frame_protocols()Martin Kaiser7-7/+7
svn path=/trunk/; revision=54439
2013-12-23From Ville Skyttä: Spelling FixesBill Meier25-36/+37
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9591 svn path=/trunk/; revision=54387
2013-12-23Add FT_SYSTEM_ID type and convert the dissectors that use print_system_id ↵Michael Mann1-1/+1
with FT_BYTES to now use FT_SYSTEM_ID type. svn path=/trunk/; revision=54383
2013-12-22Avoid including definition of column_info structure in dissectors.Jakub Zawadzki1-0/+1
Move COL_* enum to <epan/column-utils.h> XXX Later we can rename epan/column-info.h to column-int.h (or smth like this) svn path=/trunk/; revision=54352
2013-12-21Argh, fix include.Jakub Zawadzki1-1/+1
I start thinking about compiling (read: installing) Qt... svn path=/trunk/; revision=54339
2013-12-21fix warnings.Jakub Zawadzki4-1/+5
svn path=/trunk/; revision=54338
2013-12-21missing includeJakub Zawadzki1-0/+1
svn path=/trunk/; revision=54336
2013-12-21fix some warnings.Jakub Zawadzki2-10/+8
svn path=/trunk/; revision=54334
2013-12-21Add missing includesJakub Zawadzki4-0/+5
svn path=/trunk/; revision=54332
2013-12-21ui/gtk/follow_stream.c was using isprint.h hack, change all isprint()Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=54329
2013-12-21isascii(x) && isprint(x) -> g_ascii_isprint(x)Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=54328
2013-12-21Drop isprint.h use g_ascii_isprint() when this include hack was enabled.Jakub Zawadzki4-13/+6
svn path=/trunk/; revision=54327
2013-12-20Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=54314
2013-12-20nnn'ULL' ==> G_GUINT64_CONSTANT(nnn)Bill Meier1-26/+29
svn path=/trunk/; revision=54304
2013-12-20Replace one more g_memmove with memmove, add a cast to make the Lua stuffEvan Huus1-1/+1
compile. svn path=/trunk/; revision=54296
2013-12-19Rename more to_str functions to have ep_ in the name if they return ephemeralEvan Huus1-1/+1
buffers. Remove two unused functions. svn path=/trunk/; revision=54250
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus2-3/+3
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-18Remove unneeded #include epan/dissectors/packet-scsi.hAlexis La Goutte3-3/+0
svn path=/trunk/; revision=54234
2013-12-18Add 'Filter Association' to context menu in packet list.Irene Rüngeler11-11/+49
svn path=/trunk/; revision=54219
2013-12-18Ignore the first line of the chunk statistics file.Irene Rüngeler2-21/+8
svn path=/trunk/; revision=54210
2013-12-18Translate a little leftover German to English.Jeff Morriss1-3/+3
svn path=/trunk/; revision=54208
2013-12-17Make Ubuntu Buildbot happyAlexis La Goutte1-1/+1
Fix following error: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp: In member function ‘void SCTPChunkStatisticsDialog::fillTable(bool)’: ../../../ui/qt/sctp_chunk_statistics_dialog.cpp:145:29: error: ignoring return value of ‘char* fgets(char*, int, FILE*)’, declared with attribute warn_unused_result [-Werror=unused-result] svn path=/trunk/; revision=54188
2013-12-17Fix preprocessor macro and indentation.Evan Huus1-2/+2
svn path=/trunk/; revision=54178
2013-12-17Fix indent (use 4 spaces) and add modelinesAlexis La Goutte1-1310/+1322
svn path=/trunk/; revision=54176
2013-12-17Make translatable ready SCTP Graph for QtAlexis La Goutte5-50/+50
svn path=/trunk/; revision=54170
2013-12-17Find the right frame when plottable was clicked.Irene Rüngeler4-35/+59
svn path=/trunk/; revision=54167
2013-12-17Fill the chunk statistics. Read line with fgets instead of getline.Irene Rüngeler1-16/+8
svn path=/trunk/; revision=54166
2013-12-17Add the header files only once.Irene Rüngeler1-6/+0
svn path=/trunk/; revision=54165
2013-12-16Fix alignment issue in GTK2 flowgraph "packet choice" window.Bill Meier1-6/+24
(Issue reported by Alexis Lagoutte). ##Backport 1.10 svn path=/trunk/; revision=54148
2013-12-15Fix warning found by doxygenAlexis La Goutte5-5/+16
svn path=/trunk/; revision=54130
2013-12-15Fix some const/ not const warnings.Jakub Zawadzki9-19/+17
svn path=/trunk/; revision=54114
2013-12-14Create/use several extended value-strings;Bill Meier1-6/+29
(Sort & remove dups from underlying value_string arrays); Reformat a few long lines; Add editor modelines; svn path=/trunk/; revision=54103