~neon/kolourpaint/master

« back to all changes in this revision

Viewing changes to kpThumbnail.cpp

  • Committer: Kevin Funk
  • Date: 2017-11-19 23:16:39 UTC
  • Revision ID: git-v1:b08455db1ca77205455f4c0bc3bf80b8347b5fcb
Modernize: Use nullptr where possible

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
    Q_ASSERT (parent);
59
59
 
60
60
    d->mainWindow = parent;
61
 
    d->view = 0;
 
61
    d->view = nullptr;
62
62
    d->lay = new QHBoxLayout (this);
63
63
 
64
64
 
134
134
    qCDebug(kpLogMisc) << "kpThumbnail::slotViewDestroyed()";
135
135
#endif
136
136
 
137
 
    d->view = 0;
 
137
    d->view = nullptr;
138
138
    updateCaption ();
139
139
}
140
140