summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2020-11-17 19:02:26 +0100
committerBenjamin Otte <otte@redhat.com>2020-11-17 19:04:39 +0100
commit77f9efa747891cf2f15001a593ff1d68ec8d294a (patch)
treef5c53da77af9e8437df3012328962ee29793f472
parent109ec523cb1c4b8a60a68982407b60bd40af683c (diff)
downloadgtk+-77f9efa747891cf2f15001a593ff1d68ec8d294a.tar.gz
textbuffer: Remove unused properties
The getters and setters were removed in f53848c3606a9c46bcb3a0e568f36e573bdf84da but the pspecs were forgotten.
-rw-r--r--gtk/gtktextbuffer.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/gtk/gtktextbuffer.c b/gtk/gtktextbuffer.c
index c7dd9d8c46..3302d07261 100644
--- a/gtk/gtktextbuffer.c
+++ b/gtk/gtktextbuffer.c
@@ -114,8 +114,6 @@ enum {
PROP_TEXT,
PROP_HAS_SELECTION,
PROP_CURSOR_POSITION,
- PROP_COPY_TARGET_LIST,
- PROP_PASTE_TARGET_LIST,
PROP_CAN_UNDO,
PROP_CAN_REDO,
PROP_ENABLE_UNDO,
@@ -538,32 +536,6 @@ gtk_text_buffer_class_init (GtkTextBufferClass *klass)
0,
GTK_PARAM_READABLE);
- /**
- * GtkTextBuffer:copy-target-list:
- *
- * The list of targets this buffer supports for clipboard copying
- * and as DND source.
- */
- text_buffer_props[PROP_COPY_TARGET_LIST] =
- g_param_spec_boxed ("copy-target-list",
- P_("Copy target list"),
- P_("The list of targets this buffer supports for clipboard copying and DND source"),
- GDK_TYPE_CONTENT_FORMATS,
- GTK_PARAM_READABLE);
-
- /**
- * GtkTextBuffer:paste-target-list:
- *
- * The list of targets this buffer supports for clipboard pasting
- * and as DND destination.
- */
- text_buffer_props[PROP_PASTE_TARGET_LIST] =
- g_param_spec_boxed ("paste-target-list",
- P_("Paste target list"),
- P_("The list of targets this buffer supports for clipboard pasting and DND destination"),
- GDK_TYPE_CONTENT_FORMATS,
- GTK_PARAM_READABLE);
-
g_object_class_install_properties (object_class, LAST_PROP, text_buffer_props);
/**