Trying to fix build problem in Linux

This commit is contained in:
cmanske%netscape.com 1998-09-29 01:36:51 +00:00
Родитель 03a0b96635
Коммит 65501248cb
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -12442,7 +12442,7 @@ EDT_ClipboardResult CEditBuffer::DeleteSelection(XP_Bool bCopyAppendAttributes){
return EDT_COP_OK; return EDT_COP_OK;
// Do strict testing and tell us if we crossed a cell boundary // Do strict testing and tell us if we crossed a cell boundary
EDT_ClipboardResult result = CanCut(TRUE, TRUE); EDT_ClipboardResult result = CanCut((XP_Bool)TRUE, (XP_Bool)TRUE);
if ( result == EDT_COP_OK || result == EDT_COP_SELECTION_CROSSES_TABLE_DATA_CELL ) if ( result == EDT_COP_OK || result == EDT_COP_SELECTION_CROSSES_TABLE_DATA_CELL )
{ {
if ( IsSelected() ) if ( IsSelected() )
@ -14505,7 +14505,7 @@ void CEditBuffer::FixupSpace( XP_Bool /*bTyping*/){
EDT_ClipboardResult CEditBuffer::CutSelection( char **ppText, int32* pTextLen, EDT_ClipboardResult CEditBuffer::CutSelection( char **ppText, int32* pTextLen,
char **ppHtml, int32* pHtmlLen){ char **ppHtml, int32* pHtmlLen){
VALIDATE_TREE(this); VALIDATE_TREE(this);
EDT_ClipboardResult result = CanCut(TRUE); EDT_ClipboardResult result = CanCut((XP_Bool)TRUE, (XP_Bool)FALSE);
if ( result != EDT_COP_OK ) return result; if ( result != EDT_COP_OK ) return result;
result = CopySelection( ppText, pTextLen, ppHtml, pHtmlLen ); result = CopySelection( ppText, pTextLen, ppHtml, pHtmlLen );
@ -16383,8 +16383,11 @@ CEditTableElement* CEditBuffer::SelectTable(XP_Bool bSelect, LO_TableStruct *pLo
// We can allow NULL pointer for table if we are just unselecting existing table // We can allow NULL pointer for table if we are just unselecting existing table
if( bSelect && !pLoTable ) if( bSelect && !pLoTable )
{ {
XP_ASSERT(FALSE); if( !pEdTable || (pLoTable = pEdTable->GetLoTable()) == NULL )
return NULL; {
XP_ASSERT(FALSE);
return NULL;
}
} }
// Assume we are deselecting current table if no pointers supplied or // Assume we are deselecting current table if no pointers supplied or
// edit table is the selected table // edit table is the selected table