forked from extern/egroupware
Fix a few remaining usages of free(), which was removed as part of the TypeScript conversion
This commit is contained in:
parent
141ad5b5cc
commit
242d435252
@ -674,7 +674,7 @@ var AdminApp = /** @class */ (function (_super) {
|
||||
if (this.acl_dialog != null) {
|
||||
content = this.acl_dialog.get_value() || {};
|
||||
// Destroy the dialog
|
||||
this.acl_dialog.free();
|
||||
this.acl_dialog.destroy();
|
||||
this.acl_dialog = null;
|
||||
}
|
||||
// Re-open the dialog
|
||||
|
@ -776,7 +776,7 @@ class AdminApp extends EgwApp
|
||||
content = this.acl_dialog.get_value() || {};
|
||||
|
||||
// Destroy the dialog
|
||||
this.acl_dialog.free();
|
||||
this.acl_dialog.destroy();
|
||||
this.acl_dialog = null;
|
||||
}
|
||||
// Re-open the dialog
|
||||
|
@ -619,7 +619,7 @@ var EgwApp = /** @class */ (function () {
|
||||
var favorite_prefix = 'favorite_';
|
||||
// Clear old, if existing
|
||||
if (this.favorite_popup && this.favorite_popup.group) {
|
||||
this.favorite_popup.group.free();
|
||||
this.favorite_popup.group.destroy();
|
||||
delete this.favorite_popup;
|
||||
}
|
||||
// Create popup
|
||||
|
@ -796,7 +796,7 @@ export abstract class EgwApp
|
||||
// Clear old, if existing
|
||||
if(this.favorite_popup && this.favorite_popup.group)
|
||||
{
|
||||
this.favorite_popup.group.free();
|
||||
this.favorite_popup.group.destroy();
|
||||
delete this.favorite_popup;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user