| 1128 | } |
| 1129 | |
| 1130 | void getTempDirectory(char* tmpDir) |
| 1131 | { |
| 1132 | sprintf(tmpDir, "%s/Temp", s_editorConfig.editorPath); |
| 1133 | FileUtil::fixupPath(tmpDir); |
| 1134 | if (!FileUtil::directoryExits(tmpDir)) |
| 1135 | { |
| 1136 | FileUtil::makeDirectory(tmpDir); |
| 1137 | } |
| 1138 | } |
| 1139 | |
| 1140 | void clearRecents() |
| 1141 | { |
no test coverage detected