diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-12-09 07:19:20 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-12-09 07:19:20 +0000 |
commit | 80618858d61d768373f42d46d6ccf0e80a303bce (patch) | |
tree | 403372c999954cf240f28ea03478f2b9c2bb3574 /gtk/Makefile.am | |
parent | 0599f44d09c8799264cae5755b8dc338ce8391aa (diff) | |
download | wireshark-80618858d61d768373f42d46d6ccf0e80a303bce.tar.gz wireshark-80618858d61d768373f42d46d6ccf0e80a303bce.tar.bz2 wireshark-80618858d61d768373f42d46d6ccf0e80a303bce.zip |
Move the GTK+ implementations of various UI utilities out of "util.c"
into "gtk/ui_util.c", and move the declarations of those UI utilities
out of "util.h" into "ui_util.h". (The header file is in the top-level
directory, rather than the "gtk" directory, because it declares
window-system-independent interfaces to routines with
window-system-dependent implementations.)
Add to "gtk/ui_util.c" a routine to set the window and icon title.
Use that routine to make the title of an Ethereal top-level window be
{filename} - Ethereal
if there's a capture open, and have "{filename}" be "<capture>" if it's
a temporary capture file.
svn path=/trunk/; revision=1255
Diffstat (limited to 'gtk/Makefile.am')
-rw-r--r-- | gtk/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index e339ff390b..434ece6bbf 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for the GTK interface routines for Ethereal # -# $Id: Makefile.am,v 1.12 1999/12/07 22:06:25 gram Exp $ +# $Id: Makefile.am,v 1.13 1999/12/09 07:19:16 guy Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -56,4 +56,5 @@ libui_a_SOURCES = \ proto_draw.c \ proto_draw.h \ stream_prefs.c \ - stream_prefs.h + stream_prefs.h \ + ui_util.c |