fixed constructor calls
This commit is contained in:
parent
9894e5f2bc
commit
1762784ef0
|
@ -163,7 +163,7 @@ public class ConferenceManager implements ConferenceAccessObject
|
||||||
if (show_hidden || !(((Boolean)(d.get(ConferenceManagerOps.KEY_HIDE))).booleanValue()))
|
if (show_hidden || !(((Boolean)(d.get(ConferenceManagerOps.KEY_HIDE))).booleanValue()))
|
||||||
{ // skip hidden conferences if we don't have the "show hidden" permission
|
{ // skip hidden conferences if we don't have the "show hidden" permission
|
||||||
ConferenceImpl conf = loadConference(d);
|
ConferenceImpl conf = loadConference(d);
|
||||||
rc.add(new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,d));
|
rc.add(new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,m_srm,d));
|
||||||
|
|
||||||
} // end if
|
} // end if
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@ public class ConferenceManager implements ConferenceAccessObject
|
||||||
} // end if
|
} // end if
|
||||||
|
|
||||||
ConferenceImpl conf = loadConference(d);
|
ConferenceImpl conf = loadConference(d);
|
||||||
return new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,d);
|
return new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,m_srm,d);
|
||||||
|
|
||||||
} // end getLinkedConference
|
} // end getLinkedConference
|
||||||
|
|
||||||
|
@ -238,7 +238,7 @@ public class ConferenceManager implements ConferenceAccessObject
|
||||||
} // end if
|
} // end if
|
||||||
|
|
||||||
ConferenceImpl conf = loadConference(d);
|
ConferenceImpl conf = loadConference(d);
|
||||||
return new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,d);
|
return new LinkedConferenceImpl(m_ops.getLinkedConferenceOps(),conf,comm,m_srm,d);
|
||||||
|
|
||||||
} // end getLinkedConference
|
} // end getLinkedConference
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user