Kaydet (Commit) 83f1151c authored tarafından Takeshi Abe's avatar Takeshi Abe

catch exception by const ref

Change-Id: Id0a9e3b52cabff7be99a5bba6ddb0a108a325d42
üst 6e9b859f
......@@ -76,11 +76,11 @@ uno::Reference<io::XInputStream> findStream(ucbhelper::Content &rContent, const
} while (xResultSet->next());
}
}
catch (uno::RuntimeException)
catch (const uno::RuntimeException &)
{
// ignore
}
catch (uno::Exception)
catch (const uno::Exception &)
{
// ignore
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment