mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 17:30:04 +01:00
* src/NetworkManagerDevice.[ch] src/NetworkManagerDbus.c doc/NetworkManager DBUS API.txt - Add a new status tag "scanning", which is set when there is no active network connection, but NetworkManager is looking for an access point to associate with * panel-applet/main.c - Cast the applet appropriately for gtk_widget_show_all () git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@192 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
20 lines
347 B
C
20 lines
347 B
C
#include <gtk/gtk.h>
|
|
#include <libgnomeui/libgnomeui.h>
|
|
#include "NMWirelessApplet.h"
|
|
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
NMWirelessApplet *nmwa;
|
|
|
|
gnome_program_init ("NMWirelessApplet", VERSION, LIBGNOMEUI_MODULE,
|
|
argc, argv,
|
|
GNOME_PARAM_NONE);
|
|
|
|
nmwa = nmwa_new ();
|
|
|
|
gtk_widget_show_all (GTK_WIDGET (nmwa));
|
|
|
|
gtk_main ();
|
|
}
|