Lines Matching refs:pRow

940 	 ::boost::shared_ptr<OTableRow>  pRow;  in CopyRows()
946 pRow = (*m_pRowList)[nIndex]; in CopyRows()
947 OSL_ENSURE(pRow,"OTableEditorCtrl::CopyRows: Row is NULL!"); in CopyRows()
948 if ( pRow && pRow->GetActFieldDescr() ) in CopyRows()
950 pClipboardRow.reset(new OTableRow( *pRow )); in CopyRows()
1012 ::boost::shared_ptr<OTableRow> pRow; in InsertRows()
1018 pRow.reset(new OTableRow()); in InsertRows()
1019 (*aStreamRef) >> *pRow; in InsertRows()
1020 pRow->SetReadOnly( sal_False ); in InsertRows()
1021 sal_Int32 nType = pRow->GetActFieldDescr()->GetType(); in InsertRows()
1022 if ( pRow->GetActFieldDescr() ) in InsertRows()
1023 pRow->GetActFieldDescr()->SetType(GetView()->getController().getTypeInfoByType(nType)); in InsertRows()
1026 aFieldName = GenerateName( pRow->GetActFieldDescr()->GetName() ); in InsertRows()
1027 pRow->GetActFieldDescr()->SetName( aFieldName ); in InsertRows()
1028 pRow->SetPos(nInsertRow); in InsertRows()
1029 m_pRowList->insert( m_pRowList->begin()+nInsertRow,pRow ); in InsertRows()
1030 vInsertedUndoRedoRows.push_back(::boost::shared_ptr<OTableRow>(new OTableRow(*pRow))); in InsertRows()
1371 ::boost::shared_ptr<OTableRow> pRow = (*m_pRowList)[ nRow ]; in GetFieldDescr()
1372 if( !pRow ) in GetFieldDescr()
1374 return pRow->GetActFieldDescr(); in GetFieldDescr()
1433 ::boost::shared_ptr<OTableRow> pRow; in IsCopyAllowed()
1437 pRow = (*m_pRowList)[nIndex]; in IsCopyAllowed()
1438 if( !pRow->GetActFieldDescr() ) in IsCopyAllowed()
1606 ::boost::shared_ptr<OTableRow> pRow; in IsPrimaryKeyAllowed()
1609 pRow = (*m_pRowList)[nIndex]; in IsPrimaryKeyAllowed()
1610 OFieldDescription* pFieldDescr = pRow->GetActFieldDescr(); in IsPrimaryKeyAllowed()
1621 || (pFieldDescr->IsNullable() && pRow->IsReadOnly()) in IsPrimaryKeyAllowed()
1873 ::boost::shared_ptr<OTableRow> pRow = (*m_pRowList)[nIndex]; in SetPrimaryKey()
1874 OFieldDescription* pFieldDescr = pRow->GetActFieldDescr(); in SetPrimaryKey()
1934 ::boost::shared_ptr<OTableRow> pRow = (*m_pRowList)[nRow]; in SwitchType()
1935 pRow->SetFieldType( _pType, sal_True ); in SwitchType()
1958 pActFieldDescr = pRow->GetActFieldDescr(); in SwitchType()