Applied GTK clipboard end of string patch.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2005-07-16 06:46:32 +00:00
parent a3dc1da946
commit c4e8770615
2 changed files with 4 additions and 4 deletions

View File

@@ -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);