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
This commit is contained in:
parent
8afb81d20d
commit
6bddaaf947
@ -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);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user