summaryrefslogtreecommitdiff
path: root/gdk/gdkapplaunchcontext.c
Commit message (Collapse)AuthorAgeFilesLines
* [annotations] Add allow-noneJohan Dahlin2010-02-191-2/+2
| | | | | | | | This commit was created using a script that searched for all docstrings containing a parameter and the string 'or %NULL'. Gdk backends and demos excluded as they are not part of a public API https://bugzilla.gnome.org/show_bug.cgi?id=610474
* Typo fixes and small doc improvementsMatthias Clasen2008-12-261-1/+6
| | | | svn path=/trunk/; revision=21929
* reorder functions to be in standard order, add prototypes and namespace toMichael Natterer2008-10-211-38/+52
| | | | | | | | | | | 2008-10-21 Michael Natterer <mitch@imendio.com> * gdk/gdkapplaunchcontext.c: reorder functions to be in standard order, add prototypes and namespace to static functions, add g_return_if_fail()s which were missing all over the place. svn path=/trunk/; revision=21692
* examples/gtkdial/gtkdial.c gdk/gdkapplaunchcontext.c gdk/gdkpango.cMichael Natterer2008-08-121-1/+1
| | | | | | | | | | | | | | | | | | | | | 2008-08-12 Michael Natterer <mitch@imendio.com> * examples/gtkdial/gtkdial.c * gdk/gdkapplaunchcontext.c * gdk/gdkpango.c * gtk/gtkcellrendererpixbuf.c * gtk/gtkcellrenderertext.c * gtk/gtkcellview.c * gtk/gtkcombobox.c * gtk/gtkfontsel.c * gtk/gtkinvisible.c * gtk/gtkliststore.c * gtk/gtktexttag.c * gtk/gtktexttagtable.c: remove dereferencing from some function pointers i missed before. svn path=/trunk/; revision=21089
* Improve docsMatthias Clasen2008-08-021-6/+21
| | | | svn path=/trunk/; revision=20929
* Include "config.h" instead of <config.h> Command used: find -nameJohan Dahlin2008-06-221-1/+1
| | | | | | | | | | | | 2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
* Go back to 2.13.0 as version for now, as there was no consensus to do theMatthias Clasen2008-02-151-7/+7
| | | | | | | | | | | | | 2008-02-15 Matthias Clasen <mclasen@redhat.com> * configure.in: Go back to 2.13.0 as version for now, as there was no consensus to do the jump. * many other places: Update Since: tags. svn path=/trunk/; revision=19586
* Remove unneeded includes. (#505411, Kazuki IWAMOTO)Matthias Clasen2007-12-251-3/+0
| | | | | | | | | | | 2007-12-24 Matthias Clasen <mclasen@redhat.com> * gdk/gdkapplaunchcontext.c: Remove unneeded includes. (#505411, Kazuki IWAMOTO) svn path=/trunk/; revision=19235
* gdk/gdkinternals.h #include <gio/gio.h> instead of individual files.Michael Natterer2007-12-141-2/+0
| | | | | | | | | | | | | | | 2007-12-14 Michael Natterer <mitch@imendio.com> * gdk/gdkinternals.h * gdk/gdkapplaunchcontext.h: #include <gio/gio.h> instead of individual files. * gdk/gdkapplaunchcontext.c * gdk/x11/gdkapplaunchcontext-x11.c: remove all gio includes, the header already includes everything now. svn path=/trunk/; revision=19180
* Add docsMatthias Clasen2007-12-131-1/+78
| | | | svn path=/trunk/; revision=19167
* Implement GAppLaunchContext in gdk, providing startup notification.Matthias Clasen2007-12-131-0/+186
2007-12-12 Matthias Clasen <mclasen@redhat.com> * gdk/gdkapplaunchcontext.[hc]: Implement GAppLaunchContext in gdk, providing startup notification. (#503203) * gdk/x11/gdkapplaunchcontext-x11.c: * gdk/win32/gdkapplaunchcontext-win32.c: * gdk/quartz/gdkapplaunchcontext-quartz.c: * gdk/directfb/gdkapplaunchcontext-directfb.c: Backend-specific parts. All but X11 are just empty stubs for now. * gdk/gdk.symbols: * gdk/gdkinternals.h: * gdk/Makefile.am: * gdk/x11/Makefile.am: * gdk/win32/Makefile.am: * gdk/quartz/Makefile.am: * gdk/directfb/Makefile.am: Necessary glue. svn path=/trunk/; revision=19165