mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 21:04:09 +00:00
8 lines
175 B
C++
8 lines
175 B
C++
|
#include "utils.hh"
|
||
|
#include <QDir>
|
||
|
|
||
|
QString Utils::Path::combine(const QString& path1, const QString& path2)
|
||
|
{
|
||
|
return QDir::cleanPath(path1 + QDir::separator() + path2);
|
||
|
}
|