Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3238)

Unified Diff: src/error.cpp

Issue 1648006: Apply patch from ebuild file to fix toString (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/dbus-c++/eventloop-integration.h ('k') | src/eventloop-integration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/error.cpp
diff --git a/src/error.cpp b/src/error.cpp
index 840365bad4bf4f6d135730d8d1558ad0622fbb59..c34430b6a1c4cf6741b9d2ec59b0e26bae590145 100644
--- a/src/error.cpp
+++ b/src/error.cpp
@@ -79,11 +79,10 @@ bool Error::is_set() const
void Error::set(const char *name, const char *message)
{
- dbus_set_error_const(&(_int->error), name, message);
+ dbus_set_error(&(_int->error), name, message);
}
const char *Error::what() const throw()
{
return _int->error.message;
}
-
« no previous file with comments | « include/dbus-c++/eventloop-integration.h ('k') | src/eventloop-integration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698