Remove calls to old stuff that keeps this from compiling. It

now no longer works at all under Photon and needs an overhaul.
This commit is contained in:
Jerry.Kirk%Nexwarecorp.com 1999-08-27 14:01:50 +00:00
Родитель b7a6312362
Коммит 797013f70d
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -73,6 +73,8 @@ NS_IMETHODIMP nsClipboard::ForceDataToClipboard()
printf( "ForceDataToClipboard()\n" );
nsresult res = NS_ERROR_FAILURE;
// REVISIT - Need to fix this
#if 0
// make sure we have a good transferable
if( mTransferable )
{
@ -124,6 +126,7 @@ printf( "ForceDataToClipboard()\n" );
printf( " ok.\n" );
else
printf( " failed.\n" );
#endif
return res;
}
@ -136,6 +139,8 @@ printf( "SetNativeClipboardData()\n" );
nsresult res = NS_ERROR_FAILURE;
// REVISIT - Need to fix this
#if 0
// make sure we have a good transferable
if( mTransferable )
{
@ -185,7 +190,7 @@ printf( "SetNativeClipboardData()\n" );
printf( " ok.\n" );
else
printf( " failed.\n" );
#endif
return res;
}
@ -197,6 +202,8 @@ printf( "GetNativeClipboardData()\n" );
nsresult res = NS_ERROR_FAILURE;
// REVISIT - Need to fix this
#if 0
if( aTransferable )
{
nsVoidArray * dfList;
@ -240,6 +247,7 @@ printf( "GetNativeClipboardData()\n" );
printf( " ok.\n" );
else
printf( " failed.\n" );
#endif
return res;
}