diff options
author | Matthias Clasen <mclasen@redhat.com> | 2022-10-26 21:52:06 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2022-10-29 13:31:41 -0400 |
commit | a51a6a3ee23e31f868cdbea2b91171b0ddaabc79 (patch) | |
tree | f7c8cfe4bcf414cc90c472b3c10d6d552ecaef24 /tests | |
parent | 8bee62dd3695f3e07d3c0b487b38a5814ed6720a (diff) | |
download | gtk+-a51a6a3ee23e31f868cdbea2b91171b0ddaabc79.tar.gz |
Deprecate GtkColorChooser and implementations
These are being replaced by GtkColorDialog
and GtkColorDialogButton.
This commit only moves the headers for GtkColorChooserWidget
and GtkColorChooserDialog to deprecated/, and keeps the
implementations in gtk/, since they will eventually be
salvaged into a private GtkColorChooserWindow.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testdialog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testdialog.c b/tests/testdialog.c index 660912cf00..3993339f38 100644 --- a/tests/testdialog.c +++ b/tests/testdialog.c @@ -1,6 +1,8 @@ #include <gtk/gtk.h> #include <glib/gstdio.h> +G_GNUC_BEGIN_IGNORE_DEPRECATIONS + static void show_message_dialog1 (GtkWindow *parent) { |