| 409 | |
| 410 | |
| 411 | void UBWidgetUniboardAPI::resize(qreal width, qreal height) |
| 412 | { |
| 413 | if (qIsNaN(width) || qIsNaN(height) |
| 414 | || qIsInf(width) || qIsInf(height)) |
| 415 | return; |
| 416 | |
| 417 | if (mGraphicsWidget) |
| 418 | { |
| 419 | mGraphicsWidget->resize(width, height); |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | |
| 424 | void UBWidgetUniboardAPI::setPreference(const QString& key, QString value) |
no outgoing calls
no test coverage detected