| 726 | } |
| 727 | |
| 728 | void Container::tabMoved(int from, int to) |
| 729 | { |
| 730 | Q_D(Container); |
| 731 | |
| 732 | QWidget *w = d->stack->widget(from); |
| 733 | d->stack->removeWidget(w); |
| 734 | d->stack->insertWidget(to, w); |
| 735 | viewForWidget(w)->notifyPositionChanged(to); |
| 736 | } |
| 737 | |
| 738 | void Container::contextMenu( const QPoint& pos ) |
| 739 | { |
nothing calls this directly
no test coverage detected