From c4e8770615dd51cce78799d8a0dd04d5cd952648 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sat, 16 Jul 2005 06:46:32 +0000 Subject: [PATCH] Applied GTK clipboard end of string patch. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/clipbrd.cpp | 4 ++-- src/gtk1/clipbrd.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gtk/clipbrd.cpp b/src/gtk/clipbrd.cpp index a8fc2c7ee0..0f5eda1871 100644 --- a/src/gtk/clipbrd.cpp +++ b/src/gtk/clipbrd.cpp @@ -287,7 +287,7 @@ selection_handler( GtkWidget *WXUNUSED(widget), gtk_selection_data_set_text( selection_data, (const gchar*)d, - size); + size-1 ); } else #endif @@ -297,7 +297,7 @@ selection_handler( GtkWidget *WXUNUSED(widget), GDK_SELECTION_TYPE_STRING, 8*sizeof(gchar), (unsigned char*) d, - size ); + size-1 ); } free(d); diff --git a/src/gtk1/clipbrd.cpp b/src/gtk1/clipbrd.cpp index a8fc2c7ee0..0f5eda1871 100644 --- a/src/gtk1/clipbrd.cpp +++ b/src/gtk1/clipbrd.cpp @@ -287,7 +287,7 @@ selection_handler( GtkWidget *WXUNUSED(widget), gtk_selection_data_set_text( selection_data, (const gchar*)d, - size); + size-1 ); } else #endif @@ -297,7 +297,7 @@ selection_handler( GtkWidget *WXUNUSED(widget), GDK_SELECTION_TYPE_STRING, 8*sizeof(gchar), (unsigned char*) d, - size ); + size-1 ); } free(d); -- 2.45.2