diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-04-03 11:30:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-04-03 11:30:06 +0200 |
commit | ce2991ee863e2e5faef95462242552515e1cf89c (patch) | |
tree | d0a515758e2f031486e5bf9aa2175ad42801cda2 /cppu/qa/cppumaker | |
parent | 8644d10098a10e02c426a4ae80ce179586f35089 (diff) |
Forbid old-style services/singletons inheriting new-style services
...does not make sense. Adapted some old-style services accordingly, where the
inherited service had been changed to new-style after the fact.
Change-Id: I5f3e4ddf99160778a319062a6c84f83529ff177b
Diffstat (limited to 'cppu/qa/cppumaker')
-rw-r--r-- | cppu/qa/cppumaker/types.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/qa/cppumaker/types.idl b/cppu/qa/cppumaker/types.idl index da5aa8fe62cd..2c0a0559af7a 100644 --- a/cppu/qa/cppumaker/types.idl +++ b/cppu/qa/cppumaker/types.idl @@ -181,7 +181,7 @@ service S2: XTest; service S3 { interface XTest; }; -singleton S4 { service S2; }; +singleton S4 { service S3; }; module services { |