| 168 | } |
| 169 | |
| 170 | int UBDocumentProxy::incPageCount() |
| 171 | { |
| 172 | if (mPageCount <= 0) |
| 173 | { |
| 174 | mPageCount = 1; |
| 175 | } |
| 176 | else |
| 177 | { |
| 178 | mPageCount++; |
| 179 | } |
| 180 | |
| 181 | return mPageCount; |
| 182 | |
| 183 | } |
| 184 | |
| 185 | |
| 186 | int UBDocumentProxy::decPageCount() |
no outgoing calls
no test coverage detected