| 249 | } |
| 250 | |
| 251 | Area::WalkerMode MainWindowPrivate::IdealToolViewCreator::operator() (View *view, Sublime::Position position) |
| 252 | { |
| 253 | if (!d->docks.contains(view)) |
| 254 | { |
| 255 | d->docks << view; |
| 256 | |
| 257 | //add view |
| 258 | d->idealController->addView(d->positionToDockArea(position), view); |
| 259 | } |
| 260 | return Area::ContinueWalker; |
| 261 | } |
| 262 | |
| 263 | Area::WalkerMode MainWindowPrivate::ViewCreator::operator() (AreaIndex *index) |
| 264 | { |
nothing calls this directly
no test coverage detected