diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2010-12-10 16:34:42 +0100 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2010-12-10 16:47:16 +0100 |
commit | dd1713a5cb332151f294b0a191338b9fe17bab9e (patch) | |
tree | 5fee1c028d9dd42956b45fd8a426d253c99c3d29 | |
parent | ca6523d8b42a1076b7ba01081b9d7e0dc72483ff (diff) |
syncevo-dbus-server: fixed compile errorsyncevolution-1-1-99-1
syncevo-dbus-server provides a logger which cannot be used after forking.
Declare that by adding the isProcessSafe() method.
-rw-r--r-- | src/syncevo-dbus-server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/syncevo-dbus-server.cpp b/src/syncevo-dbus-server.cpp index 9a540a86..769bd0fc 100644 --- a/src/syncevo-dbus-server.cpp +++ b/src/syncevo-dbus-server.cpp @@ -1394,6 +1394,8 @@ public: const char *function, const char *format, va_list args); + + virtual bool isProcessSafe() const { return false; } }; /** |