~mhr3/unity-scopes-api/merge-trunk

« back to all changes in this revision

Viewing changes to src/scopes/internal/ScopeObject.cpp

  • Committer: Michi Henning
  • Date: 2014-07-29 09:33:53 UTC
  • mfrom: (425 devel)
  • mto: This revision was merged to the branch mainline in revision 427.
  • Revision ID: michi.henning@canonical.com-20140729093353-ndu77ndikxqtaqsc
Merged devel and fixed conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
    {
120
120
        try
121
121
        {
122
 
            reply->finished(ListenerBase::Error, e.what());
 
122
            reply->finished(CompletionDetails(CompletionDetails::Error, e.what()));  // Oneway, can't block
123
123
        }
124
124
        catch (...)
125
125
        {
132
132
    {
133
133
        try
134
134
        {
135
 
            reply->finished(ListenerBase::Error, "unknown exception");
 
135
            reply->finished(CompletionDetails(CompletionDetails::Error, "unknown exception"));  // Oneway, can't block
136
136
        }
137
137
        catch (...)
138
138
        {