| 254 | }; |
| 255 | |
| 256 | DocumentViewController::DocumentViewController(KActionCollection *actionCollection, QObject *parent) |
| 257 | : QObject(parent) |
| 258 | , d(new DocumentViewControllerPrivate) |
| 259 | { |
| 260 | d->q = this; |
| 261 | d->mActionCollection = actionCollection; |
| 262 | d->mView = nullptr; |
| 263 | d->mZoomWidget = nullptr; |
| 264 | d->mToolContainer = nullptr; |
| 265 | |
| 266 | d->setupActions(); |
| 267 | } |
| 268 | |
| 269 | DocumentViewController::~DocumentViewController() |
| 270 | { |
nothing calls this directly
no test coverage detected