Return current dir: "/" or pure directory name
| 65 | private: |
| 66 | /// Return current dir: "/" or pure directory name |
| 67 | inline QString currentDir() |
| 68 | { |
| 69 | const QString path = _currentDirectory.path().mid(1); // remove slash |
| 70 | return path.isEmpty() ? "/" : path; |
| 71 | } |
| 72 | void mkDirInternal(const QString &name); |
| 73 | /// Save the dictionary to file |
| 74 | void save(); |