Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. KisDocument *KisDocument::lockAndCreateSnapshot()
  2. {
  3. KisDocument *doc = lockAndCloneForSaving();
  4. if (doc) {
  5. // clone palette list
  6. doc->d->paletteList = doc->d->clonePaletteList(doc->d->paletteList);
  7. doc->d->documentResourceStorage = doc->d->documentResourceStorage->clone();
  8. }
  9. return doc;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement