diff options
author | David Robillard <d@drobilla.net> | 2010-12-15 02:06:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-15 02:06:56 +0000 |
commit | 3379430e15a59a96562e8cdebe7cbf81efc1b3d3 (patch) | |
tree | ab6f2dfafb7f78323e47d6de8e5c9dcde9adab71 /src/DBus.hpp | |
parent | 9e117275efe6585e2039130a5729bd75c120706e (diff) | |
download | patchage-3379430e15a59a96562e8cdebe7cbf81efc1b3d3.tar.gz patchage-3379430e15a59a96562e8cdebe7cbf81efc1b3d3.tar.bz2 patchage-3379430e15a59a96562e8cdebe7cbf81efc1b3d3.zip |
Clean up code.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2692 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/DBus.hpp')
-rw-r--r-- | src/DBus.hpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/DBus.hpp b/src/DBus.hpp index 9960efa..6475a05 100644 --- a/src/DBus.hpp +++ b/src/DBus.hpp @@ -19,9 +19,9 @@ #ifndef PATCHAGE_DBUS_HPP #define PATCHAGE_DBUS_HPP -#include <dbus/dbus.h> -#include <dbus/dbus-glib.h> #include <dbus/dbus-glib-lowlevel.h> +#include <dbus/dbus-glib.h> +#include <dbus/dbus.h> class Patchage; @@ -30,23 +30,23 @@ public: DBus(Patchage* app); bool call( - bool response_expected, - const char* service, - const char* object, - const char* iface, - const char* method, + bool response_expected, + const char* service, + const char* object, + const char* iface, + const char* method, DBusMessage** reply_ptr, - int in_type, - va_list ap); + int in_type, + va_list ap); bool call( - bool response_expected, - const char* service, - const char* object, - const char* iface, - const char* method, + bool response_expected, + const char* service, + const char* object, + const char* iface, + const char* method, DBusMessage** reply_ptr, - int in_type, + int in_type, ...); DBusConnection* connection() { return _connection; } |