(pres *slides.Presentation, objectID string, rowIndex, columnIndex int64)
| 168 | } |
| 169 | |
| 170 | func slidesTableCellTextState(pres *slides.Presentation, objectID string, rowIndex, columnIndex int64) (bool, bool) { |
| 171 | for _, slide := range pres.Slides { |
| 172 | if slide == nil { |
| 173 | continue |
| 174 | } |
| 175 | if found, hasText := slidesTableCellStateInElements(slide.PageElements, objectID, rowIndex, columnIndex); found { |
| 176 | return true, hasText |
| 177 | } |
| 178 | } |
| 179 | return false, false |
| 180 | } |
| 181 | |
| 182 | func slidesTableCellStateInElements(elements []*slides.PageElement, objectID string, rowIndex, columnIndex int64) (bool, bool) { |
| 183 | for _, el := range elements { |
no test coverage detected