2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-10-09 13:39:00 +00:00

Revert "Use gtk not only to get image from clipboard, but also to set"

This reverts commit f88c132c96.

Fixes #9885.
This commit is contained in:
John Preston
2020-12-11 12:00:52 +04:00
parent cc35653c2c
commit df420e4ccf
15 changed files with 21 additions and 112 deletions

View File

@@ -88,9 +88,6 @@ extern f_gtk_clipboard_get gtk_clipboard_get;
typedef void (*f_gtk_clipboard_store)(::GtkClipboard *clipboard);
extern f_gtk_clipboard_store gtk_clipboard_store;
typedef void (*f_gtk_clipboard_set_image)(::GtkClipboard *clipboard, GdkPixbuf *pixbuf);
extern f_gtk_clipboard_set_image gtk_clipboard_set_image;
typedef GtkSelectionData* (*f_gtk_clipboard_wait_for_contents)(::GtkClipboard *clipboard, GdkAtom target);
extern f_gtk_clipboard_wait_for_contents gtk_clipboard_wait_for_contents;
@@ -271,9 +268,6 @@ extern f_gtk_dialog_run gtk_dialog_run;
typedef GdkAtom (*f_gdk_atom_intern)(const gchar *atom_name, gboolean only_if_exists);
extern f_gdk_atom_intern gdk_atom_intern;
typedef GdkPixbuf* (*f_gdk_pixbuf_new_from_data)(const guchar *data, GdkColorspace colorspace, gboolean has_alpha, int bits_per_sample, int width, int height, int rowstride, GdkPixbufDestroyNotify destroy_fn, gpointer destroy_fn_data);
extern f_gdk_pixbuf_new_from_data gdk_pixbuf_new_from_data;
typedef GdkPixbuf* (*f_gdk_pixbuf_new_from_file_at_size)(const gchar *filename, int width, int height, GError **error);
extern f_gdk_pixbuf_new_from_file_at_size gdk_pixbuf_new_from_file_at_size;