Lines Matching refs:pChangeTrack
2936 ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack(); in IsChangeRecording() local
2937 return pChangeTrack != NULL; in IsChangeRecording()
2944 ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack(); in HasChangeRecordProtection() local
2945 if (pChangeTrack) in HasChangeRecordProtection()
2946 bRes = pChangeTrack->IsProtected(); in HasChangeRecordProtection()
2982 ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack(); in SetProtectionPassword() local
2983 if (pChangeTrack) in SetProtectionPassword()
2985 sal_Bool bProtected = pChangeTrack->IsProtected(); in SetProtectionPassword()
2994 pChangeTrack->SetProtection( aProtectionHash ); in SetProtectionPassword()
2998 pChangeTrack->SetProtection( ::com::sun::star::uno::Sequence< sal_Int8 >() ); in SetProtectionPassword()
3002 if ( bProtected != pChangeTrack->IsProtected() ) in SetProtectionPassword()
3016 ScChangeTrack* pChangeTrack = aDocument.GetChangeTrack(); in GetProtectionHash() local
3017 if (pChangeTrack && pChangeTrack->IsProtected()) in GetProtectionHash()
3019 rPasswordHash = pChangeTrack->GetProtection(); in GetProtectionHash()