]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/clipbrd.cpp
Add import/export attributes
[wxWidgets.git] / src / gtk / clipbrd.cpp
index a8fc2c7ee0f6d3909642fc06c6b365ea58f003bb..0f5eda18713885c148f92dfe4ccd29734b60a95f 100644 (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);