Don't export color picker functions

This is not public API, so it shouldn't be exported.
This commit is contained in:
Matthias Clasen 2020-02-04 20:01:56 +01:00
parent 1e6171a4a7
commit ed6c0dc15c

View File

@ -51,15 +51,11 @@ struct _GtkColorPickerInterface {
GError **error);
};
GDK_AVAILABLE_IN_ALL
GType gtk_color_picker_get_type (void) G_GNUC_CONST;
GDK_AVAILABLE_IN_ALL
GtkColorPicker * gtk_color_picker_new (void);
GDK_AVAILABLE_IN_ALL
void gtk_color_picker_pick (GtkColorPicker *picker,
GAsyncReadyCallback callback,
gpointer user_data);
GDK_AVAILABLE_IN_ALL
GdkRGBA * gtk_color_picker_pick_finish (GtkColorPicker *picker,
GAsyncResult *res,
GError **error);