diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-08-20 19:26:47 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-08-20 19:26:47 (GMT) |
commit | b620cf7471f80361522dd2232c54068bce4a42be (patch) | |
tree | d59fb2c7ba56192535fbdfd25e87afac638d13a3 /Swiften/Application/ApplicationPathProvider.h | |
parent | 8acd1155de2cfbe7d7f1716566418f84fbd55a07 (diff) | |
download | swift-contrib-b620cf7471f80361522dd2232c54068bce4a42be.zip swift-contrib-b620cf7471f80361522dd2232c54068bce4a42be.tar.bz2 |
getExecutableDir() -> getDataDir().
Diffstat (limited to 'Swiften/Application/ApplicationPathProvider.h')
-rw-r--r-- | Swiften/Application/ApplicationPathProvider.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Swiften/Application/ApplicationPathProvider.h b/Swiften/Application/ApplicationPathProvider.h index e9c0864..7bd2630 100644 --- a/Swiften/Application/ApplicationPathProvider.h +++ b/Swiften/Application/ApplicationPathProvider.h @@ -17,10 +17,9 @@ namespace Swift { ApplicationPathProvider(const String& applicationName); virtual ~ApplicationPathProvider(); - boost::filesystem::path getSettingsFileName() const; boost::filesystem::path getAvatarDir() const; virtual boost::filesystem::path getHomeDir() const = 0; - virtual boost::filesystem::path getSettingsDir() const = 0; + virtual boost::filesystem::path getDataDir() const = 0; virtual boost::filesystem::path getExecutableDir() const = 0; boost::filesystem::path getProfileDir(const String& profile) const; boost::filesystem::path getResourcePath(const String& resource) const; |