============================================================================
| 256 | |
| 257 | //============================================================================ |
| 258 | Qt::Orientation CResizeHandle::orientation() const |
| 259 | { |
| 260 | switch (d->HandlePosition) |
| 261 | { |
| 262 | case Qt::LeftEdge: // fall through |
| 263 | case Qt::RightEdge: return Qt::Horizontal; |
| 264 | |
| 265 | case Qt::TopEdge: // fall through |
| 266 | case Qt::BottomEdge: return Qt::Vertical; |
| 267 | } |
| 268 | |
| 269 | return Qt::Horizontal; |
| 270 | } |
| 271 | |
| 272 | |
| 273 | //============================================================================ |
no outgoing calls
no test coverage detected