summaryrefslogtreecommitdiff
path: root/main_statusbar.h
AgeCommit message (Collapse)AuthorFilesLines
2012-01-16Move some headers for UI stuff, and the alert_box.c UI-specific file, toGuy Harris1-71/+0
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
2011-12-29Add 'extern "C"' wrappers and #include guards to various header files.Gerald Combs1-0/+7
svn path=/trunk/; revision=40321
2010-11-28Add GCC-style printf annotation to the routines that now take a formatGuy Harris1-3/+6
string and format arguments, and fix issues warned about by that. svn path=/trunk/; revision=35044
2010-11-27Make some other statusbar routines take a format string and format args,Guy Harris1-6/+8
and get rid of an unnecessary string pointer. Make the argument to welcome_header_push_msg() a const pointer. svn path=/trunk/; revision=35042
2010-11-27Move main_statusbar.h to the top-level directory; none of its routinesGuy Harris1-0/+59
use GTK+ data types, so, at least in theory, it could be implemented atop another toolkit. Make statusbar_push_temporary_msg() take a format string and format arguments. Use it instead of simple_status(), and change one call to just take a format string and arguments rather than to take the result of using that format string and arguments with g_strdup_printf() and passing the result to statusbar_push_temporary_msg(). svn path=/trunk/; revision=35041