summaryrefslogtreecommitdiff
path: root/binaryurp/source/bridge.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-09-05 10:12:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-09-05 10:12:40 +0200
commit7a7a2c5495e9e03181843c327a0c28fd6e5e88bd (patch)
tree33b457dcc9ea71e5b38d7c7c6a5a0b064d8395bf /binaryurp/source/bridge.cxx
parenta60f9112146b23566a6a0ff3a5109889f4b7c0b1 (diff)
Cosmetics
Change-Id: I7b217c4fb48bbee4a2872d15cf23a955b464ffca
Diffstat (limited to 'binaryurp/source/bridge.cxx')
-rw-r--r--binaryurp/source/bridge.cxx27
1 files changed, 9 insertions, 18 deletions
diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx
index 89ef7202f92b..e59311ddb12e 100644
--- a/binaryurp/source/bridge.cxx
+++ b/binaryurp/source/bridge.cxx
@@ -180,12 +180,8 @@ Bridge::Bridge(
factory_(factory), name_(name), connection_(connection),
provider_(provider),
binaryUno_(UNO_LB_UNO),
- cppToBinaryMapping_(
- CPPU_CURRENT_LANGUAGE_BINDING_NAME,
- UNO_LB_UNO),
- binaryToCppMapping_(
- UNO_LB_UNO,
- CPPU_CURRENT_LANGUAGE_BINDING_NAME),
+ cppToBinaryMapping_(CPPU_CURRENT_LANGUAGE_BINDING_NAME, UNO_LB_UNO),
+ binaryToCppMapping_(UNO_LB_UNO, CPPU_CURRENT_LANGUAGE_BINDING_NAME),
protPropTid_(
reinterpret_cast< sal_Int8 const * >(".UrpProtocolPropertiesTid"),
RTL_CONSTASCII_LENGTH(".UrpProtocolPropertiesTid")),
@@ -193,10 +189,8 @@ Bridge::Bridge(
protPropType_(
cppu::UnoType<
css::uno::Reference< css::bridge::XProtocolProperties > >::get()),
- protPropRequest_(
- "com.sun.star.bridge.XProtocolProperties::requestChange"),
- protPropCommit_(
- "com.sun.star.bridge.XProtocolProperties::commitChange"),
+ protPropRequest_("com.sun.star.bridge.XProtocolProperties::requestChange"),
+ protPropCommit_("com.sun.star.bridge.XProtocolProperties::commitChange"),
state_(STATE_INITIAL), threadPool_(0), currentContextMode_(false),
proxies_(0), calls_(0), normalCall_(false), activeCalls_(0),
mode_(MODE_REQUESTED)
@@ -696,8 +690,7 @@ void Bridge::handleRequestChangeReply(
}
if (n != exp) {
throw css::uno::RuntimeException(
- "URP: requestChange reply with unexpected return value"
- " received",
+ "URP: requestChange reply with unexpected return value received",
static_cast< cppu::OWeakObject * >(this));
}
decrementCalls();
@@ -797,8 +790,7 @@ void Bridge::handleCommitChangeRequest(
assert(ok);
(void) ok; // avoid warnings
for (sal_Int32 i = 0; i != s.getLength(); ++i) {
- if ( s[i].Name == "CurrentContext" )
- {
+ if (s[i].Name == "CurrentContext") {
ccMode = true;
} else {
ccMode = false;
@@ -883,8 +875,8 @@ css::uno::Reference< css::uno::XInterface > Bridge::getInstance(
for (sal_Int32 i = 0; i != sInstanceName.getLength(); ++i) {
if (sInstanceName[i] > 0x7F) {
throw css::io::IOException(
- "XBridge::getInstance sInstanceName contains non-ASCII"
- " character",
+ ("XBridge::getInstance sInstanceName contains non-ASCII"
+ " character"),
css::uno::Reference< css::uno::XInterface >());
}
}
@@ -997,8 +989,7 @@ void Bridge::makeReleaseCall(
AttachThread att(getThreadPool());
sendRequest(
att.getTid(), oid, type,
- css::uno::TypeDescription(
- "com.sun.star.uno.XInterface::release"),
+ css::uno::TypeDescription("com.sun.star.uno.XInterface::release"),
std::vector< BinaryAny >());
}