| 2417 | } |
| 2418 | |
| 2419 | bool Textblock::findSizeRequestReference (Widget *reference, int *xRef, |
| 2420 | int *yRef) |
| 2421 | { |
| 2422 | if (reference == this) { |
| 2423 | if (xRef) |
| 2424 | *xRef = 0; |
| 2425 | if (yRef) |
| 2426 | *yRef = 0; |
| 2427 | return true; |
| 2428 | } else |
| 2429 | return sizeRequestParams.findReference (reference, xRef, yRef); |
| 2430 | } |
| 2431 | |
| 2432 | /** |
| 2433 | * Add a word (without hyphens) to the page structure. |
no test coverage detected