Fix typo
This commit is contained in:
parent
098241e403
commit
c25cab0cf8
|
@ -252,7 +252,7 @@ void CLIPBOARD_IO::SaveSelection( const PCB_SELECTION& aSelected, bool isFootpri
|
||||||
|
|
||||||
clipboard->Flush();
|
clipboard->Flush();
|
||||||
|
|
||||||
#ifndef __WXOSX__ )
|
#ifndef __WXOSX__
|
||||||
// This section exists to return the clipboard data, ensuring it has fully
|
// This section exists to return the clipboard data, ensuring it has fully
|
||||||
// been processed by the system clipboard. This appears to be needed for
|
// been processed by the system clipboard. This appears to be needed for
|
||||||
// extremely large clipboard copies on asynchronous linux clipboard managers
|
// extremely large clipboard copies on asynchronous linux clipboard managers
|
||||||
|
@ -264,9 +264,9 @@ void CLIPBOARD_IO::SaveSelection( const PCB_SELECTION& aSelected, bool isFootpri
|
||||||
{
|
{
|
||||||
wxTextDataObject data;
|
wxTextDataObject data;
|
||||||
clipboard->GetData( data );
|
clipboard->GetData( data );
|
||||||
(void) data.GetText(); // Keep unused variable
|
( void )data.GetText(); // Keep unused variable
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue