diff options
author | Andrew <forkk@forkk.net> | 2013-01-14 17:42:38 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-01-14 17:42:38 -0600 |
commit | fce0f5df045f1d956cabeda41406001a037c9ab7 (patch) | |
tree | 269c8dd0ceb5ca94ef3c708c9b225de7189b0719 /util/pathutils.cpp | |
parent | 586092cf9901dde873882c76cb3944cd0addbd2a (diff) | |
download | PrismLauncher-fce0f5df045f1d956cabeda41406001a037c9ab7.tar.gz PrismLauncher-fce0f5df045f1d956cabeda41406001a037c9ab7.tar.bz2 PrismLauncher-fce0f5df045f1d956cabeda41406001a037c9ab7.zip |
Added stuff.
Diffstat (limited to 'util/pathutils.cpp')
-rw-r--r-- | util/pathutils.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/pathutils.cpp b/util/pathutils.cpp index 809dd6f2..8610b80d 100644 --- a/util/pathutils.cpp +++ b/util/pathutils.cpp @@ -26,6 +26,11 @@ QString PathCombine(QString path1, QString path2) return path1.append(path2); } +QString PathCombine(QString path1, QString path2, QString path3) +{ + return PathCombine(PathCombine(path1, path2), path3); +} + QString AbsolutePath(QString path) { return QFileInfo(path).absolutePath(); |