summaryrefslogtreecommitdiff
path: root/gtk/tests/filechooser.c
Commit message (Collapse)AuthorAgeFilesLines
* Use G_SOURCE_CONTINUE/REMOVEMatthias Clasen2012-01-301-1/+1
| | | | | Now that GLib provides these macros, we should use them to make the code more readable.
* bgo#625416 - Don't reload the filechooser's folder during a re-map eventFederico Mena Quintero2010-08-101-1/+0
| | | | | | | | | | | | | Long ago, before we had file monitoring at the GIO/Glib level, we would reload the current folder each time a file chooser gets (re)mapped. This was basically to let the GIMP recycle the same file chooser for all file/open or file/save operations, instead of creating a new one every time. In that case, we reloaded the folder with each ::map() event so that the file chooser would present an up-to-date view of the folder that was being displayed. Now, the folder should always be up-to-date as we do file monitoring all the time. Signed-off-by: Federico Mena Quintero <federico@novell.com>
* Remove some GTK_DISABLE_DEPRECATED and ENABLE_BROKEN guardsJavier Jardón2010-06-071-2/+0
|
* More uses of g_strcmp0Javier Jardón2010-03-161-16/+16
|
* Deprecate widget flag: GTK_WIDGET_VISIBLEJavier Jardón2010-03-011-2/+2
| | | | | | Use gtk_widget_get_visible() instead https://bugzilla.gnome.org/show_bug.cgi?id=69872
* Deprecate widget flag: GTK_WIDGET_DRAWABLEJavier Jardón2010-03-011-6/+6
| | | | | | Use gtk_widget_is_drawable() instead. https://bugzilla.gnome.org/show_bug.cgi?id=69872
* Revert name changeCody Russell2008-07-011-1/+1
| | | | svn path=/trunk/; revision=20724
* Practically everything changed.Cody Russell2008-06-301-1/+1
| | | | | | | | | | | | | 2008-06-30 Cody Russell <bratsche@gnome.org> * Practically everything changed. Change all references of GIMP Toolkit (and variations of it) to GTK+ Toolkit, showing no mercy at all to our beloved ancestry. (#540529) svn path=/trunk/; revision=20709
* 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
* tests/Makefile.am tests/autotestfilechooser.c tests/buildertest.cMichael Natterer2008-06-181-0/+1093
2008-06-18 Michael Natterer <mitch@imendio.com> * tests/Makefile.am * tests/autotestfilechooser.c * tests/buildertest.c * tests/defaultvaluetest.c * tests/floatingtest.c * tests/objecttests.c * tests/pixbuf-init.c * tests/textbuffertest.c: remove unit tests here... * gtk/tests/Makefile.am * gtk/tests/builder.c * gtk/tests/defaultvalue.c * gtk/tests/filechooser.c * gtk/tests/floating.c * gtk/tests/object.c * gtk/tests/pixbuf-init.c * gtk/tests/textbuffer.c: ...and add them here. svn path=/trunk/; revision=20450