aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2011-02-17Fix some Visual C++ static analyzer complaints.Gerald Combs1-1/+1
svn path=/trunk/; revision=35971
2011-02-16Fix compilation on Windows.Gerald Combs2-1/+15
svn path=/trunk/; revision=35967
2011-02-16More cleanup toward being able to compile with GTK+ 3.0. Mostly replacingStephen Fisher4-9/+269
deprecated GtkToolTips with new functions. svn path=/trunk/; revision=35966
2011-02-12Traditional GtkTooltips deprecated at GTK+ 2.14 (and removed in 3.0), soStephen Fisher2-0/+16
use the new functions when available. svn path=/trunk/; revision=35926
2011-02-11Remove #ifndef GSEAL_ENABLE hack to work-around the lack of an accessorStephen Fisher1-14/+1
for a GSEALed variable since GTK 3.0 is out, which has the accessor. svn path=/trunk/; revision=35917
2011-02-10Add the rest of the changes from the patch in bug 5924. Squelches someGuy Harris1-94/+3
compiler warnings. svn path=/trunk/; revision=35901
2011-02-10#ifdef → #ifndef.Gerald Combs1-1/+1
svn path=/trunk/; revision=35900
2011-02-10Mark a parameter unused if needed.Gerald Combs1-1/+5
svn path=/trunk/; revision=35899
2011-02-10Remove a bunch of prototypes in airpcap_dlg.h for functions which areGerald Combs2-584/+420
now static. Make another function static. svn path=/trunk/; revision=35897
2011-02-08Fix compilation problem for GTK+ < 2.18Stephen Fisher1-2/+2
graph_analysis.c(1450): error C2039: 'allocation' : is not a member of '_GtkStyle' svn path=/trunk/; revision=35877
2011-02-08Build with pre-2.18 GTK+es.Guy Harris1-2/+8
svn path=/trunk/; revision=35874
2011-02-08More -DGSEAL_ENABLE cleanup in preparation for GTK+ 3.0...Stephen Fisher3-8/+8
svn path=/trunk/; revision=35872
2011-02-08More -DGSEAL_ENABLE cleanup (hopefully without breaking anything)...Stephen Fisher3-47/+237
svn path=/trunk/; revision=35870
2011-02-07Fix parameters to gtk_widget_get_allocation() call.Jaap Keuter2-2/+2
svn path=/trunk/; revision=35865
2011-02-07Switch from GtkCList (which is deprecated) to GtkTreeView+GtkListStore.Gerald Combs4-751/+619
Make a bunch of functions static. Get rid of a no-longer-necessary struct. Clean up other parts of the code. svn path=/trunk/; revision=35862
2011-02-07Similar corrections here.Guy Harris1-14/+22
svn path=/trunk/; revision=35861
2011-02-07Fix typo.Guy Harris1-1/+1
svn path=/trunk/; revision=35856
2011-02-07"XXX takes a foo * as an argument" != "pass a variable of type foo * toGuy Harris1-12/+12
XXX"; in the case of gtk_widget_get_allocation(), you have to pass it a pointer to a variable of type foo, where foo = GtkAllocation. The same applies to the pre-GTK-2.18 code. svn path=/trunk/; revision=35854
2011-02-07More -DGSEAL_ENABLE cleanup in preparation for GTK+ 3Stephen Fisher2-36/+118
svn path=/trunk/; revision=35853
2011-02-07More -DGSEAL_ENABLE cleanup in preparation for GTK+ 3Stephen Fisher1-5/+5
svn path=/trunk/; revision=35852
2011-02-07Fix crash introduced in r35849Stephen Fisher1-3/+3
svn path=/trunk/; revision=35851
2011-02-07And even more -DGSEAL_ENABLE cleanup for GTK+ 3.0 preparation...Stephen Fisher13-24/+137
svn path=/trunk/; revision=35849
2011-02-07More -DGSEAL_ENABLE cleanup in preparation for GTK+ 3.0Stephen Fisher2-0/+12
svn path=/trunk/; revision=35848
2011-02-07Some -DGSEAL_ENABLE cleanup in preparation for GTK+ 3.0Stephen Fisher1-7/+32
svn path=/trunk/; revision=35847
2011-02-03Disable error substring controls when show errors checkbox is disabled.Martin Mathieson2-4/+32
svn path=/trunk/; revision=35784
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-5/+5
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2011-02-01Replace a couple of deprecated functions # ifdef:ed with the GTK version ↵Anders Broman3-0/+16
they are deprecated in. svn path=/trunk/; revision=35740
2011-01-31Use {'0', ...} type initializer for fixed length character arrays.Bill Meier1-1/+1
svn path=/trunk/; revision=35735
2011-01-31Fix two cases of 'if (x = y)' which should be 'if (x == y)'.Bill Meier1-1/+1
Found by reviewing msvc level 4 warnings "assignment within conditional expression". (Unfortunately most of the warnings are false positives so this warning can't be enabled) svn path=/trunk/; revision=35726
2011-01-31Only define view_menu_auto_scroll_live_cb if HAVE_LIBPCAPAnders Broman1-0/+2
svn path=/trunk/; revision=35720
2011-01-31Try to fix previous commit.Anders Broman2-3/+7
- menu.h commited by mistake - new_packet_list.c missing svn path=/trunk/; revision=35719
2011-01-31From Cal Turney:Anders Broman4-63/+64
Bug 5621 - With String in Packet details searches, highlight row in tree https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5621 svn path=/trunk/; revision=35718
2011-01-31Added filter autocomplete to "Edit Column Details".Stig Bjørlykke1-0/+3
svn path=/trunk/; revision=35717
2011-01-30Fix various instances of "unreachable code".Bill Meier2-2/+1
svn path=/trunk/; revision=35713
2011-01-30Don't compile non-used (unreachable) code on Windows.Bill Meier1-6/+10
svn path=/trunk/; revision=35712
2011-01-30Don't compile unused non-Windows code when on Windows.Bill Meier1-28/+51
(Found by msvc level 4 warning "unreachable code"). Also: - suppress an invalid msvc level 4 warning by initializing a variable. - Use #ifdef _WIN32 iso #if _WIN32 svn path=/trunk/; revision=35708
2011-01-29Improve r35695/35696 by repeating the whole function call in eachStephen Fisher1-4/+2
block of the #if / #else / #endif for clarity. svn path=/trunk/; revision=35697
2011-01-29Fix Windows compile error(s);Bill Meier1-4/+4
{Compiles OK on Windows but not tested). svn path=/trunk/; revision=35696
2011-01-29If we're compiling with GTK+ 2.14 or higher, use accessor functionStephen Fisher1-0/+4
gtk_color_selection_dialog_get_color_selection() instead of accessing the struct member directly. svn path=/trunk/; revision=35695
2011-01-26From Irene Ruengeler: Double check that the interface specified in theMichael Tüxen1-7/+14
preferences still exists. If not, don't use it. svn path=/trunk/; revision=35659
2011-01-24Fix crash when doing File ! Export ! Objects ! SMB.Bill Meier1-146/+125
[Essentially: simplify the code used to test for duplicate packets]. Fixes Bug #5337: http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5337 Also: - Fix "divide by 0" which caused garbage for display of a percent value; - Remove some unneeded #includes; svn path=/trunk/; revision=35638
2011-01-23Fix a crash which can occur if a user hits "Capture:Options" immediately ↵Bill Meier1-9/+57
followed by "Capture:Start" Fixes Bug #4645: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4645 Essentially: The "Capture Start" code "interrupted" the "Capture Options" code and attempted to use not yet initialized "Capture Options" state. svn path=/trunk/; revision=35633
2011-01-23Reword some text about the accuracy of the dislayed values.Bill Meier1-1/+1
svn path=/trunk/; revision=35629
2011-01-22Resolve bug #2520 by moving the follow stream direction combo box above theStephen Fisher1-32/+36
buttons to make more room for hostnames. svn path=/trunk/; revision=35625
2011-01-22Set active combo_box entry before connecting the changed signalStig Bjørlykke1-1/+1
to avoid a crash when opening the Import window. svn path=/trunk/; revision=35620
2011-01-22Close dir opened by ws_dir_open().Stig Bjørlykke1-0/+1
svn path=/trunk/; revision=35618
2011-01-22Add buttons to allow filtering only UL or DL on selected UE.Martin Mathieson1-47/+144
svn path=/trunk/; revision=35616
2011-01-21Re-arrange help menu a bit to group website and wiki links.Jaap Keuter1-3/+3
svn path=/trunk/; revision=35613
2011-01-19Cast the returned value from strlen() to an int to make the Windows 64-bitStephen Fisher1-2/+2
buildbot happy. svn path=/trunk/; revision=35585
2011-01-19From Cal Turney via enhancement bug #5587: In hex or string searches of theStephen Fisher2-9/+33
packet data highlight the target rather than the entire field. svn path=/trunk/; revision=35584