Kaydet (Commit) 5e9d0c19 authored tarafından Andre Fischer's avatar Andre Fischer

Change of view registration.

üst 6c0af166
......@@ -42,18 +42,21 @@ class SelectionView
extends ListeningObjectView
implements ActionListener
{
static public ObjectView Create (XAccessibleContext xContext)
static public ObjectView Create (
ObjectViewContainer aContainer,
XAccessibleContext xContext)
{
XAccessibleSelection xSelection = (XAccessibleSelection)UnoRuntime.queryInterface(
XAccessibleSelection.class, xContext);
if (xSelection != null)
return new SelectionView();
return new SelectionView(aContainer);
else
return null;
}
public SelectionView ()
public SelectionView (ObjectViewContainer aContainer)
{
super (aContainer);
Layout();
}
......
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