diff options
| author | Remko Tronçon <git@el-tramo.be> | 2010-10-23 08:43:50 (GMT) |
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2010-10-23 08:43:50 (GMT) |
| commit | ca8268eb662fedeef039bc39f7b8206c08610299 (patch) | |
| tree | e317c4c8225efed85d1cd22a3a7f84015f7a2d3c /Swift/QtUI | |
| parent | 96be62f4a700e3bd50f4b6f177f02e5820a09106 (diff) | |
| download | swift-contrib-ca8268eb662fedeef039bc39f7b8206c08610299.zip swift-contrib-ca8268eb662fedeef039bc39f7b8206c08610299.tar.bz2 | |
Fixed compilation errors due to previous commit.
Diffstat (limited to 'Swift/QtUI')
| -rw-r--r-- | Swift/QtUI/FreeDesktopNotifier.cpp | 2 | ||||
| -rw-r--r-- | Swift/QtUI/FreeDesktopNotifier.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/FreeDesktopNotifier.cpp b/Swift/QtUI/FreeDesktopNotifier.cpp index 2560882..0f0bfe0 100644 --- a/Swift/QtUI/FreeDesktopNotifier.cpp +++ b/Swift/QtUI/FreeDesktopNotifier.cpp @@ -21,7 +21,7 @@ namespace Swift { FreeDesktopNotifier::FreeDesktopNotifier(const String& name) : applicationName(name) { } -void FreeDesktopNotifier::doShowMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()>) { +void FreeDesktopNotifier::showMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()>) { QDBusConnection bus = QDBusConnection::sessionBus(); if (!bus.isConnected()) { return; diff --git a/Swift/QtUI/FreeDesktopNotifier.h b/Swift/QtUI/FreeDesktopNotifier.h index 087e9e3..6583493 100644 --- a/Swift/QtUI/FreeDesktopNotifier.h +++ b/Swift/QtUI/FreeDesktopNotifier.h @@ -13,7 +13,7 @@ namespace Swift { public: FreeDesktopNotifier(const String& name); - virtual void doShowMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()> callback); + virtual void showMessage(Type type, const String& subject, const String& description, const boost::filesystem::path& picture, boost::function<void()> callback); private: String applicationName; |
Swift