diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-01-08 14:37:45 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-01-08 14:38:55 -0500 |
commit | 9a3b61ec9df83dbbea0266142512df1a209f8286 (patch) | |
tree | fd93e2774fe92e60f9bb9000f500a2e1ce2fdc54 /testsuite | |
parent | bbf6e81c1f55d534ef20a2994a722fe4e0766d2f (diff) | |
download | gtk+-9a3b61ec9df83dbbea0266142512df1a209f8286.tar.gz |
Drop GtkPlacesSidebar from public API
This is a bit of filechooser internals that gets shared with
nautilus, which is fine, but it shouldn't be part of our
public API. There are no other users than nautilus.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gtk/notify.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 2bd03dd96e..0dfc8c7315 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -388,8 +388,10 @@ test_type (gconstpointer data) if (g_type_is_a (type, GTK_TYPE_FILE_CHOOSER_BUTTON) || g_type_is_a (type, GTK_TYPE_FILE_CHOOSER_DIALOG) || g_type_is_a (type, GTK_TYPE_FILE_CHOOSER_WIDGET) || - g_type_is_a (type, GTK_TYPE_FILE_CHOOSER_NATIVE) || - g_type_is_a (type, GTK_TYPE_PLACES_SIDEBAR)) + g_type_is_a (type, GTK_TYPE_FILE_CHOOSER_NATIVE)) + return; + + if (g_str_equal (g_type_name (type), "GtkPlacesSidebar")) return; /* These rely on a d-bus session bus */ |