mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-03 21:50:27 +01:00
2005-08-29 Dan Williams <dcbw@redhat.com>
Patch from Dumitru Ciobarcianu <Dumitru.Ciobarcianu@iNES.RO> * gnome/applet/applet.c - Define GTK_STOCK_INFO for GTK 2.6 and lower git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@908 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
d124e41627
commit
ab727faaba
2 changed files with 18 additions and 6 deletions
18
ChangeLog
18
ChangeLog
|
|
@ -1,11 +1,17 @@
|
|||
2005-08-29 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* gnome/applet/*
|
||||
- Don't use threads any more. Anything that blocks
|
||||
(like gtk_dialog_run()) will have to get fixed up which
|
||||
should happen quickly. We really only had threads to make
|
||||
the animation smooth, and when everything got converted over
|
||||
to DBus Pending Calls, the need for threads kind of went away
|
||||
Patch from Dumitru Ciobarcianu <Dumitru.Ciobarcianu@iNES.RO>
|
||||
* gnome/applet/applet.c
|
||||
- Define GTK_STOCK_INFO for GTK 2.6 and lower
|
||||
|
||||
2005-08-29 Dan Williams <dcbw@redhat.com>
|
||||
|
||||
* gnome/applet/*
|
||||
- Don't use threads any more. Anything that blocks
|
||||
(like gtk_dialog_run()) will have to get fixed up which
|
||||
should happen quickly. We really only had threads to make
|
||||
the animation smooth, and when everything got converted over
|
||||
to DBus Pending Calls, the need for threads kind of went away
|
||||
|
||||
2005-08-29 Christopher Aillon <caillon@redhat.com>
|
||||
|
||||
|
|
|
|||
|
|
@ -77,6 +77,12 @@
|
|||
#define GTK_STOCK_MEDIA_PAUSE GTK_STOCK_STOP
|
||||
#define GTK_STOCK_MEDIA_PLAY GTK_STOCK_REFRESH
|
||||
#define GTK_STOCK_ABOUT GTK_STOCK_DIALOG_INFO
|
||||
#define GTK_STOCK_INFO GTK_STOCK_DIALOG_INFO
|
||||
#endif
|
||||
|
||||
/* Compat for GTK 2.6 */
|
||||
#if (GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION == 6)
|
||||
#define GTK_STOCK_INFO GTK_STOCK_DIALOG_INFO
|
||||
#endif
|
||||
|
||||
static GObject * nmwa_constructor (GType type, guint n_props, GObjectConstructParam *construct_props);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue