]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/text/text.cpp
compilation fixes
[wxWidgets.git] / samples / text / text.cpp
index 19c5af35a5f45f2306b6270471b7e9dc7f78d195..26e87442e6f3f6cc3ee5d351976e4e85ade68fe6 100644 (file)
@@ -547,6 +547,11 @@ void MyPanel::DoPasteFromClipboard()
 
 void MyPanel::DoCopyToClipboard()
 {
+    // On X11, we want to get the data from the primary selection instead
+    // of the normal clipboard (which isn't normal under X11 at all). This
+    // call has no effect under MSW.
+    wxTheClipboard->UsePrimarySelection();
+
     wxString text( m_multitext->GetLineText(0) );
 
     if (text.IsEmpty())