ConfigPath: return a Path object

Migrate all callers to use Path directly, instead of doing the
conversion in each caller.
This commit is contained in:
Max Kellermann
2013-08-07 19:54:38 +02:00
parent abe090ec1f
commit b76a29a69a
19 changed files with 176 additions and 173 deletions

View File

@@ -22,7 +22,9 @@
#include "gerror.h"
char *
parsePath(const char *path, GError **error_r);
class Path;
Path
ParsePath(const char *path, GError **error_r);
#endif