| 957 | } |
| 958 | |
| 959 | bool DocumentManagerPrivate::documentIsDraft() |
| 960 | { |
| 961 | if (document->isNew()) { |
| 962 | return false; |
| 963 | } |
| 964 | |
| 965 | QFileInfo info(document->filePath()); |
| 966 | |
| 967 | return ((info.dir().absolutePath() == draftLocation) |
| 968 | && (info.baseName().startsWith(draftName))); |
| 969 | } |
| 970 | |
| 971 | void DocumentManagerPrivate::createDraft() |
| 972 | { |