summaryrefslogtreecommitdiff
path: root/include/cppu
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 11:14:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:43 +0100
commit81cb6a7fbc315d3287e7a485b73a1b66dd4478ef (patch)
treed25c4a3e8356f41b6e41b043d7e3511b04635b14 /include/cppu
parent8471b35688d82181e8cd68095fb98d16d3cd7784 (diff)
[API CHANGE] cppu::Enterable::v_isValid returns bool
While strictly speaking an incompatible change, it is extremely unlikely that external code uses cppu::Enterable at all; this should always have been a private URE implementation detail. Change-Id: I2c3fe754fe6268b18ca03532229f3403736f6f6e
Diffstat (limited to 'include/cppu')
-rw-r--r--include/cppu/Enterable.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppu/Enterable.hxx b/include/cppu/Enterable.hxx
index 778d5ac75182..50894dfb54f5 100644
--- a/include/cppu/Enterable.hxx
+++ b/include/cppu/Enterable.hxx
@@ -40,7 +40,7 @@ public:
virtual void v_leave (void) = 0;
virtual void v_callInto_v(uno_EnvCallee * pCallee, va_list * pParam) = 0;
virtual void v_callOut_v (uno_EnvCallee * pCallee, va_list * pParam) = 0;
- virtual int v_isValid (rtl::OUString * pReason) = 0;
+ virtual bool v_isValid (rtl::OUString * pReason) = 0;
virtual ~Enterable() {}