diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-08-19 18:02:47 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-08-19 18:02:47 (GMT) |
commit | 3a7c72e4d4ef968f87425b3394eb5e2aa7882e20 (patch) | |
tree | 089f1b62e8462e5c55e06a77aa416755d9e299f8 /Slimber | |
parent | f416fe2749a959ad26544ead709683d3800059e4 (diff) | |
download | swift-contrib-3a7c72e4d4ef968f87425b3394eb5e2aa7882e20.zip swift-contrib-3a7c72e4d4ef968f87425b3394eb5e2aa7882e20.tar.bz2 |
Fixed compilation on OS X.
Diffstat (limited to 'Slimber')
-rw-r--r-- | Slimber/MainController.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Slimber/MainController.cpp b/Slimber/MainController.cpp index 3699498..5c624a2 100644 --- a/Slimber/MainController.cpp +++ b/Slimber/MainController.cpp @@ -11,7 +11,7 @@ #include <iostream> #include "Swiften/Base/foreach.h" -#include "Swiften/Application/Platform/PlatformApplication.h" +#include "Swiften/Application/PlatformApplicationPathProvider.h" #include "Swiften/LinkLocal/LinkLocalService.h" #include "Swiften/LinkLocal/LinkLocalServiceBrowser.h" #include "Swiften/LinkLocal/DNSSD/PlatformDNSSDQuerierFactory.h" @@ -35,7 +35,7 @@ MainController::MainController(Menulet* menulet) : menulet(menulet) { boost::bind(&MainController::handleServicesChanged, this)); vCardCollection = new FileVCardCollection( - PlatformApplication("Slimber").getSettingsDir()); + PlatformApplicationPathProvider("Slimber").getSettingsDir()); server = new Server(5222, 5562, linkLocalServiceBrowser, vCardCollection); server->onStopped.connect( |