From: Francesco Montorsi Date: Mon, 22 Sep 2008 22:39:21 +0000 (+0000) Subject: fix signature of wxClipboard::UserPrimarySelection; in particular change the default... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6bddaaf9472231a10204058664e15f61e7c28ddc fix signature of wxClipboard::UserPrimarySelection; in particular change the default value from true to false since in the real sources the default value has always been the latter git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/clipbrd.h b/interface/wx/clipbrd.h index ca3dec1783..fdcb6292ff 100644 --- a/interface/wx/clipbrd.h +++ b/interface/wx/clipbrd.h @@ -35,7 +35,7 @@ // Write some text to the clipboard if (wxTheClipboard->Open()) { - // This data objects are held by the clipboard, + // This data objects are held by the clipboard, // so do not delete them in the app. wxTheClipboard->SetData( new wxTextDataObject("Some text") ); wxTheClipboard->Close(); @@ -49,7 +49,7 @@ wxTextDataObject data; wxTheClipboard->GetData( data ); wxMessageBox( data.GetText() ); - } + } wxTheClipboard->Close(); } @endcode @@ -173,6 +173,6 @@ public: normal clipboard contents with the currently selected text on the other platforms. */ - void UsePrimarySelection(bool primary = true); + virtual void UsePrimarySelection(bool primary = false); };