summaryrefslogtreecommitdiff
path: root/UnoControls/util
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-19 17:55:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-19 18:00:36 +0100
commit2dde51e17288e7fecd4fad0d9a69fffc465f536b (patch)
tree85a3f840de814afbbb9904245e58afef9fc260de /UnoControls/util
parentf8db395a8a2ad89802a52c68c428a6d0d6bd5476 (diff)
Remove odd service names (that duplicate type names)
Looks like no code instantiated these via those odd service names (except for ProgressMonitor/StatusIndicator instantiating ProgressBar via odd "com.sun.star.awt.XProgressBar" service name until that got cleaned up in the previous commit). Also looks like no code instantiates them via their implementation names either (in which case ProgressBar/ProgressMonitor/StatusIndicator would be dead code), but maybe there is code that dynamically constructs those implemenation names and calls creeateInstance on them? So best leave the implementations in for now... Change-Id: I20b92345e343b1f776387f63d9b02a5b0a47fe21
Diffstat (limited to 'UnoControls/util')
-rw-r--r--UnoControls/util/ctl.component12
1 files changed, 3 insertions, 9 deletions
diff --git a/UnoControls/util/ctl.component b/UnoControls/util/ctl.component
index ce23fcea887b..3c0437d966b5 100644
--- a/UnoControls/util/ctl.component
+++ b/UnoControls/util/ctl.component
@@ -22,13 +22,7 @@
<implementation name="stardiv.UnoControls.FrameControl">
<service name="com.sun.star.frame.FrameControl"/>
</implementation>
- <implementation name="stardiv.UnoControls.ProgressBar">
- <service name="com.sun.star.awt.XProgressBar"/>
- </implementation>
- <implementation name="stardiv.UnoControls.ProgressMonitor">
- <service name="com.sun.star.awt.XProgressMonitor"/>
- </implementation>
- <implementation name="stardiv.UnoControls.StatusIndicator">
- <service name="com.sun.star.task.XStatusIndicator"/>
- </implementation>
+ <implementation name="stardiv.UnoControls.ProgressBar"/>
+ <implementation name="stardiv.UnoControls.ProgressMonitor"/>
+ <implementation name="stardiv.UnoControls.StatusIndicator"/>
</component>